Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | final class ReportShowMenuBuilderEvent extends MenuBuilderEvent |
||
13 | { |
||
14 | /** @var ReportInterface */ |
||
15 | private $report; |
||
16 | |||
17 | public function __construct(FactoryInterface $factory, ItemInterface $menu, ReportInterface $report) |
||
18 | { |
||
19 | parent::__construct($factory, $menu); |
||
20 | |||
21 | $this->report = $report; |
||
22 | } |
||
23 | |||
24 | public function getReport(): ReportInterface |
||
27 | } |
||
28 | } |
||
29 |