| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 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 |