예제 #1
0
 /**
  * Is auction belong to the given user's store
  *
  * @param  \Woojin\UserBundle\Entity\User  User    $user
  * @param  \Woojin\StoreBundle\Entity\Auction  Auction $auction
  * @return boolean
  */
 protected function isAuctionBelongGivenUsersStore(User $user, Auction $auction)
 {
     return $auction->isAuctionBelongGivenUsersStore($user);
 }