| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function __construct( |
||
| 35 | FactoryInterface $factory, |
||
| 36 | EventDispatcherInterface $eventDispatcher, |
||
| 37 | AuthorizationCheckerInterface $authorizationChecker |
||
| 38 | ) { |
||
| 39 | parent::__construct($factory, $eventDispatcher); |
||
| 40 | |||
| 41 | $this->authorizationChecker = $authorizationChecker; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |