| 1 | <?php |
||
| 13 | class RebootKernelSubscriber implements EventSubscriberInterface |
||
| 14 | { |
||
| 15 | /** @var Client */ |
||
| 16 | private $client; |
||
| 17 | /** @var LoggerInterface */ |
||
| 18 | private $logger; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param Client $client |
||
| 22 | */ |
||
| 23 | 2 | public function __construct( |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 1 | public static function getSubscribedEvents() |
|
| 41 | |||
| 42 | 1 | public function reset() |
|
| 48 | } |
||
| 49 |