| 1 | <?php |
||
| 10 | class ReportNotDeliveredEvent extends Event |
||
| 11 | { |
||
| 12 | const NAME = 'report.not_delivered'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var ReportInterface |
||
| 16 | */ |
||
| 17 | protected $report; |
||
| 18 | |||
| 19 | public function __construct(ReportInterface $report) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return ReportInterface |
||
| 26 | */ |
||
| 27 | public function getReport(): ReportInterface |
||
| 31 | } |
||
| 32 |