| 1 | <?php |
||
| 14 | class RebootKernelSubscriber implements EventSubscriberInterface |
||
| 15 | { |
||
| 16 | /** @var Client */ |
||
| 17 | private $client; |
||
| 18 | /** @var LoggerInterface|null */ |
||
| 19 | private $logger; |
||
| 20 | /** @var bool */ |
||
| 21 | private $debugMode; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * |
||
| 25 | * @param Client $client |
||
| 26 | * @param LoggerInterface $logger |
||
| 27 | * @param bool $debugMode |
||
| 28 | */ |
||
| 29 | 2 | public function __construct( |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | 1 | public static function getSubscribedEvents() |
|
| 50 | |||
| 51 | 1 | public function reset() |
|
| 59 | } |
||
| 60 |