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