Example #1
0
 /**
  * {@inheritdoc}
  */
 public function removeAction(ActionInterface $action)
 {
     $action->setPromotion(null);
     $this->actions->removeElement($action);
     return $this;
 }
Example #2
0
 /**
  * @param ActionInterface $action
  * @return $this
  */
 public function removeAction(ActionInterface $action)
 {
     $this->actions->detach($action);
     return $this;
 }