| 1 | <?php |
||
| 12 | class EntryWasInserted extends Event |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var EntityModel |
||
| 16 | */ |
||
| 17 | public $entity; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var |
||
| 21 | */ |
||
| 22 | public $entry; |
||
| 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, $data) |
||
| 40 | } |
||
| 41 |