コード例 #1
0
ファイル: Process.php プロジェクト: potfur/statemachine
 /**
  * Return all states
  *
  * @return State[]
  */
 public function getStates()
 {
     return $this->states->all();
 }
コード例 #2
0
ファイル: State.php プロジェクト: potfur/statemachine
 /**
  * Return event collection
  *
  * @return EventInterface[]
  */
 public function getEvents()
 {
     return $this->events->all();
 }