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