Phue\Command\SetSceneLightState::__construct PHP Method

__construct() public method

Constructs a command
public __construct ( mixed $scene, mixed $light )
$scene mixed Scene Id or Scene object
$light mixed Light Id or Light object
    public function __construct($scene, $light)
    {
        $this->sceneId = (string) $scene;
        $this->lightId = (string) $light;
    }
SetSceneLightState