예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function removeValue(OptionValueInterface $value)
 {
     $this->assertMultipleAllowed();
     if ($this->hasValue($value)) {
         $this->optionValues->removeElement($value);
     }
     return $this;
 }
예제 #2
0
파일: Option.php 프로젝트: aleherse/Sylius
 /**
  * {@inheritdoc}
  */
 public function hasValue(OptionValueInterface $value)
 {
     return $this->values->contains($value);
 }
예제 #3
0
파일: Variant.php 프로젝트: aleherse/Sylius
 /**
  * {@inheritdoc}
  */
 public function hasOption(OptionValueInterface $option)
 {
     return $this->options->contains($option);
 }