Exemple #1
0
 /**
  * {@inheritdoc}
  */
 public function removeOption(OptionInterface $option)
 {
     if ($this->hasOption($option)) {
         $this->options->removeElement($option);
     }
     return $this;
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  */
 public function removeOption(OptionInterface $option)
 {
     $this->options->removeElement($option);
 }
Exemple #3
0
 /**
  * {@inheritdoc}
  */
 public function removeOption(BaseOptionInterface $option)
 {
     $this->options->removeElement($option);
     return $this;
 }