Add missing Power states (#12559)

This commit is contained in:
Jellyfrog
2021-02-24 22:55:03 +01:00
committed by GitHub
parent 3d5f4bdadd
commit c6acd86528

View File

@ -28,9 +28,11 @@ abstract class PowerState
const STATES = [
'powered off' => self::OFF,
'poweredoff' => self::OFF,
'shut off' => self::OFF,
'powered on' => self::ON,
'poweredon' => self::ON,
'running' => self::ON,
'suspended' => self::SUSPENDED,