| 1 | <?php |
||
| 16 | class ProductBundleRepository extends EntityRepository implements ProductBundleRepositoryInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @return array|ProductBundleInterface[] |
||
| 20 | */ |
||
| 21 | public function findByName(string $name, string $locale): array |
||
| 32 | |||
| 33 | public function findOneByCode(string $code): ?ProductBundleInterface |
||
| 42 | } |
||
| 43 |