Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | final class CreatedAfterFilter extends Filter |
||
13 | { |
||
14 | /** @var DateTimeInterface */ |
||
15 | private $dateTime; |
||
16 | |||
17 | public function __construct(DateTimeInterface $dateTime) |
||
18 | { |
||
19 | $this->dateTime = $dateTime; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @throws StringsException |
||
24 | */ |
||
25 | public function filter(QueryBuilder $queryBuilder): void |
||
30 | } |
||
31 | } |
||
32 |