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