blob: d3282658693c54a57c5aca59523f74bee4fb31f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/* Icinga Web 2 | (c) 2022 Icinga GmbH | GPLv2+ */
namespace Icinga\Less;
trait LightModeTrait
{
/** @var LightMode */
private $lightMode;
/**
* @return LightMode
*/
public function getLightMode()
{
return $this->lightMode;
}
/**
* @param LightMode $lightMode
*
* @return $this
*/
public function setLightMode(LightMode $lightMode)
{
$this->lightMode = $lightMode;
return $this;
}
}
|