Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | KernelHandler $kernelHandler, |
||
22 | KernelInterface $kernel, |
||
23 | array $server, |
||
24 | History $history, |
||
25 | CookieJar $cookieJar |
||
26 | ) { |
||
27 | parent::__construct($kernel, $server, $history, $cookieJar); |
||
28 | $this->kernelHandler = $kernelHandler; |
||
29 | $this->disableReboot(); |
||
30 | } |
||
31 | |||
55 |