| Total Complexity | 6 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class H5pImportEventSubscriber implements EventSubscriberInterface |
||
| 13 | { |
||
| 14 | private H5pImportPlugin $plugin; |
||
| 15 | |||
| 16 | public function __construct() |
||
| 17 | { |
||
| 18 | $this->plugin = H5pImportPlugin::create(); |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function getSubscribedEvents(): array |
||
| 25 | ]; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function onCreateCourse(CourseCreatedEvent $event): void |
||
| 41 |