| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 77.78% |
| Changes | 0 | ||
| 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 | 6 | public function getEntities() |
|
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param mixed $entities |
||
| 29 | */ |
||
| 30 | 4 | public function setEntities($entities) |
|
| 31 | { |
||
| 32 | 4 | $this->entities = $entities; |
|
| 33 | 4 | } |
|
| 34 | |||
| 35 | 2 | public function getFilters(): array |
|
| 38 | } |
||
| 39 | |||
| 40 | public function setFilters(array $filters) |
||
| 45 |