@@ -184,7 +184,7 @@ |
||
184 | 184 | protected function resetConstraintsOnMemoryExhaustionError() |
185 | 185 | { |
186 | 186 | $reservedMemory = new \SplFixedArray(187500); // 3M |
187 | - register_shutdown_function(function () use (&$reservedMemory): void { |
|
187 | + register_shutdown_function(function() use (&$reservedMemory): void { |
|
188 | 188 | $reservedMemory = null; // free the reserved memory |
189 | 189 | $error = error_get_last(); |
190 | 190 | if (strpos($error['message'], 'Allowed memory size of') !== false) { |