| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class NamedProductsFinder implements NamedProductsFinderInterface |
||
| 19 | { |
||
| 20 | /** @var QueryBuilderInterface */ |
||
| 21 | private $productsByPartialNameQueryBuilder; |
||
| 22 | |||
| 23 | /** @var FinderInterface */ |
||
| 24 | private $productsFinder; |
||
| 25 | |||
| 26 | public function __construct( |
||
| 32 | } |
||
| 33 | |||
| 34 | public function findByNamePart(string $namePart): ?array |
||
| 42 |