1 | <?php |
||
8 | class CollectionCrudEvent extends CrudEvent |
||
9 | { |
||
10 | /** @var Collection */ |
||
11 | private $entities = []; |
||
12 | |||
13 | /** |
||
14 | * CollectionCrudEvent constructor. |
||
15 | * |
||
16 | * @param array $entities |
||
17 | */ |
||
18 | public function __construct($entities) |
||
28 | |||
29 | /** |
||
30 | * @return Collection |
||
31 | */ |
||
32 | public function getEntities() |
||
36 | } |
||
37 |