Ejemplo n.º 1
0
 /**
  * @param ItemInterface $item
  *
  * @return WishlistInterface
  */
 public function addItem(ItemInterface $item) : WishlistInterface
 {
     $item->setWishlist($this);
     $this->items->add($item);
     return $this;
 }