Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
16 | class OrderRepository extends AbstractRepository |
||
17 | { |
||
18 | use OrderRepositoryTrait; |
||
19 | |||
20 | public function __construct(RegistryInterface $registry) |
||
23 | } |
||
24 | |||
25 | public function findOneByExternalId(int $externalId): ?OrderInterface |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param \DateTimeInterface $start |
||
35 | * @param \DateTimeInterface $end |
||
36 | * @return OrderInterface[] |
||
37 | */ |
||
38 | public function findByInterval(\DateTimeInterface $start, \DateTimeInterface $end) |
||
51 |