Exemplo n.º 1
0
 /**
  * To list all enable states for this object.
  * @api
  *
  * @return string[]
  */
 public function listEnabledStates()
 {
     if ($this->activesStates instanceof \ArrayAccess) {
         return array_keys($this->activesStates->getArrayCopy());
     } else {
         return [];
     }
 }