| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class WishlistRepository extends EntityRepository implements WishlistRepositoryInterface |
||
| 18 | { |
||
| 19 | public function findOneByShopUser(ShopUserInterface $shopUser): ?WishlistInterface |
||
| 26 | ; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function findByToken(string $token): ?WishlistInterface |
||
| 36 | ; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function findAllByShopUser(int $shopUser): array |
||
| 46 | ; |
||
| 47 | } |
||
| 48 | |||
| 49 | public function findAllByAnonymous(?string $cookie): ?array |
||
| 58 |