| 1 | <?php |
||
| 7 | final class IndexRepositoryTimeSlotEvent |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | private $constraints; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var QueryInterface |
||
| 16 | */ |
||
| 17 | private $query; |
||
| 18 | |||
| 19 | public function __construct(array $constraints, QueryInterface $query) |
||
| 24 | |||
| 25 | public function getConstraints(): array |
||
| 29 | |||
| 30 | public function getQuery(): QueryInterface |
||
| 34 | |||
| 35 | public function setConstraints(array $constraints): void |
||
| 39 | } |
||
| 40 |