1 | <?php |
||
19 | final class ConvertToMarkdownBeforeRunEventSubscriber implements EventSubscriberInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var string[] |
||
23 | */ |
||
24 | private $extensions = ['md', 'markdown']; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public static function getSubscribedEvents() : array |
||
35 | |||
36 | public function beforeRun(SourceSetEvent $sourceSetEvent) |
||
47 | } |
||
48 |