コード例 #1
0
ファイル: ProductVariant.php プロジェクト: Avazanga1/Sylius
 /**
  * {@inheritdoc}
  */
 public function removeImage(ProductVariantImageInterface $image)
 {
     $image->setVariant(null);
     $this->images->removeElement($image);
     return $this;
 }