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