getAlertModes() public static method

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