Commit 35263ad 1 parent 4573dbf commit 35263ad Copy full SHA for 35263ad
File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 16
16
use function set_exception_handler ;
17
17
18
18
use const E_ALL ;
19
- use const E_STRICT ;
20
19
use const STDERR ;
21
20
22
21
/**
@@ -61,7 +60,7 @@ private function __construct()
61
60
62
61
private static function setErrorReporting (): void
63
62
{
64
- error_reporting (E_ALL | E_STRICT );
63
+ error_reporting (E_ALL );
65
64
ini_set ('display_errors ' , '1 ' );
66
65
}
67
66
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ final class PsalmRestarter extends XdebugHandler
36
36
'jit_buffer_size ' => 128 * 1024 * 1024 ,
37
37
'max_accelerated_files ' => 1_000_000 ,
38
38
'interned_strings_buffer ' => 64 ,
39
- 'jit_max_root_traces ' => 1_000_000 ,
40
- 'jit_max_side_traces ' => 1_000_000 ,
41
- 'jit_max_exit_counters ' => 1_000_000 ,
39
+ 'jit_max_root_traces ' => 100_000 ,
40
+ 'jit_max_side_traces ' => 100_000 ,
41
+ 'jit_max_exit_counters ' => 100_000 ,
42
42
'jit_hot_loop ' => 1 ,
43
43
'jit_hot_func ' => 1 ,
44
44
'jit_hot_return ' => 1 ,
You can’t perform that action at this time.
0 commit comments