getEffectModes() public static method

Get effect modes
public static getEffectModes ( ) : array
return array List of color modes
Example #1
0
 /**
  * Test: Get effect modes
  *
  * @covers \Phue\Command\SetLightState::getEffectModes
  */
 public function testGetEffectModes()
 {
     $this->assertNotEmpty(SetLightState::getEffectModes());
     $this->assertTrue(in_array(SetLightState::EFFECT_NONE, SetLightState::getEffectModes()));
 }