1 | <?php |
||
12 | class EntryWasUpdated extends Event |
||
13 | { |
||
14 | /** |
||
15 | * @var EntityModel |
||
16 | */ |
||
17 | public $entity; |
||
18 | |||
19 | /** |
||
20 | * @var |
||
21 | */ |
||
22 | public $entry_id; |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | * @var |
||
27 | */ |
||
28 | public $data; |
||
29 | |||
30 | /** |
||
31 | * @param EntityModel $entity |
||
32 | * @param $entry |
||
33 | */ |
||
34 | public function __construct(EntityModel $entity, $entry_id, $data) |
||
40 | } |
||
41 |