Beispiel #1
0
 /**
  * This method removes an action from the transition.
  *
  * @access public
  * @param \Unicity\Automaton\IAction $action                the action to be removed
  */
 public function removeAction(Automaton\IAction $action)
 {
     if ($action !== null) {
         $this->actions->removeValue($action);
     }
 }