| 1 | <?php |
||
| 7 | class EntityEvent extends AbstractEvent |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var mixed |
||
| 11 | */ |
||
| 12 | private $entities; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $filters = []; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return mixed |
||
| 21 | */ |
||
| 22 | public function getEntities() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param mixed $entities |
||
| 29 | */ |
||
| 30 | public function setEntities($entities) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public function getFilters(): array |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param array $filters |
||
| 45 | */ |
||
| 46 | public function setFilters(array $filters) |
||
| 50 | } |
||
| 51 |