コード例 #1
0
ファイル: Offer.php プロジェクト: evgmitrahovich/shop
 /**
  * @param OfferInterface $offer
  * @return bool
  */
 public function equals(OfferInterface $offer)
 {
     if (!$this->id || !$offer->getId()) {
         return false;
     }
     return $this->id == $offer->getId();
 }