| 1 | <?php |
||
| 17 | class FileCreationSubscriber implements EventSubscriberInterface |
||
| 18 | { |
||
| 19 | private $compiler; |
||
| 20 | private $logger; |
||
| 21 | |||
| 22 | public function __construct(Compiler $compiler, StakxLogger $logger) |
||
| 27 | |||
| 28 | public function onFileCreation(AbstractEvent $event) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public static function getSubscribedEvents() |
||
| 48 | } |
||
| 49 |