1 | <?php |
||
8 | class DeliveredItemEvent extends Event |
||
9 | { |
||
10 | /** |
||
11 | * @var bool |
||
12 | */ |
||
13 | public $isSuccess; |
||
14 | |||
15 | /** |
||
16 | * @var MailRepositoryInterface |
||
17 | */ |
||
18 | public $model; |
||
19 | |||
20 | /** |
||
21 | * DeliveredItemEvent constructor. |
||
22 | * |
||
23 | * @param bool $isSuccess |
||
24 | * @param array $model |
||
25 | * @param array $config |
||
26 | */ |
||
27 | public function __construct(bool $isSuccess, MailRepositoryInterface $model, array $config = []) |
||
33 | } |
||
34 |