| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait ProductRepositoryTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $alias |
||
| 14 | * @param string|null $indexBy The index for the from. |
||
| 15 | * |
||
| 16 | * @return QueryBuilder |
||
| 17 | */ |
||
| 18 | abstract public function createQueryBuilder($alias, $indexBy = null); |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function createPaginatorForBrand(BrandInterface $brand): iterable |
||
| 33 |