Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
54 | 1 | public function getIniDirectives() |
|
55 | { |
||
56 | 1 | $directives = $this->configData['directives']; |
|
57 | |||
58 | 1 | $directives['opcache.memory_consumption'] = $this->byteFormatter->format($directives['opcache.memory_consumption']); |
|
59 | |||
60 | 1 | unset($directives['opcache.inherited_hack']); |
|
61 | |||
62 | 1 | return $directives; |
|
63 | } |
||
64 | |||
75 |