1 | <?php |
||
17 | class EntityEvent extends Event |
||
18 | { |
||
19 | /** |
||
20 | * @var null|EntityInterface |
||
21 | */ |
||
22 | private $entity = null; |
||
23 | |||
24 | /** |
||
25 | * @param EntityInterface $entity |
||
26 | */ |
||
27 | public function __construct(EntityInterface $entity) |
||
31 | |||
32 | /** |
||
33 | * @return null|EntityInterface |
||
34 | */ |
||
35 | public function entity() |
||
39 | } |