icingaweb2/library/Icinga/Less/LightModeTrait.php

31 lines
500 B
PHP
Raw Normal View History

<?php
2022-02-09 21:22:36 +01:00
/* Icinga Web 2 | (c) 2022 Icinga Development Team | 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;
}
}