Skip to content

Commit 218b3b1

Browse files
committed
fix: typo
1 parent 5418869 commit 218b3b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/Security/CheckPhpIni.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public static function checkIni(?string $argument = null): array
137137
'opcache.enable' => ['recommended' => '1'],
138138
'opcache.enable_cli' => ['recommended' => '1'],
139139
'opcache.jit' => ['recommended' => 'tracing'],
140-
'opcache.jit_buffer_size' => ['recommended' => '256', 'remark' => 'Adjust with your free space of memory)'],
140+
'opcache.jit_buffer_size' => ['recommended' => '256', 'remark' => 'Adjust with your free space of memory'],
141141
'zend.assertions' => ['recommended' => '-1'],
142142
];
143143

@@ -146,8 +146,8 @@ public static function checkIni(?string $argument = null): array
146146
'opcache.enable' => ['recommended' => '1'],
147147
'opcache.enable_cli' => ['recommended' => '1'],
148148
'opcache.jit' => ['recommended' => 'tracing'],
149-
'opcache.jit_buffer_size' => ['recommended' => '256', 'remark' => 'Adjust with your free space of memory)'],
150-
'opcache.memory_consumption' => ['recommended' => '512', 'remark' => 'Adjust with your free space of memory)'],
149+
'opcache.jit_buffer_size' => ['recommended' => '256', 'remark' => 'Adjust with your free space of memory'],
150+
'opcache.memory_consumption' => ['recommended' => '512', 'remark' => 'Adjust with your free space of memory'],
151151
'opcache.interned_strings_buffer' => ['recommended' => '64'],
152152
'opcache.max_accelerated_files' => ['recommended' => '40000', 'remark' => 'Find many files in your project (example: find your_project/ -iname *.php|wc -l)'],
153153
'opcache.max_wasted_percentage' => ['recommended' => '15'],

0 commit comments

Comments
 (0)