| 1 | <?php |
||
| 18 | class ProductRepository extends BaseProductRepository implements ProductRepositoryInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function findByNamePart(string $phrase, ?string $locale = null): array |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param $locale |
||
| 35 | * |
||
| 36 | * @return QueryBuilder |
||
| 37 | */ |
||
| 38 | private function createTranslationBasedQueryBuilder($locale): QueryBuilder |
||
| 54 | } |
||
| 55 |