Skip to content

Commit 35263ad

Browse files
committed
BUmp
1 parent 4573dbf commit 35263ad

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Psalm/Internal/ErrorHandler.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use function set_exception_handler;
1717

1818
use const E_ALL;
19-
use const E_STRICT;
2019
use const STDERR;
2120

2221
/**
@@ -61,7 +60,7 @@ private function __construct()
6160

6261
private static function setErrorReporting(): void
6362
{
64-
error_reporting(E_ALL | E_STRICT);
63+
error_reporting(E_ALL);
6564
ini_set('display_errors', '1');
6665
}
6766

src/Psalm/Internal/Fork/PsalmRestarter.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ final class PsalmRestarter extends XdebugHandler
3636
'jit_buffer_size' => 128 * 1024 * 1024,
3737
'max_accelerated_files' => 1_000_000,
3838
'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,
4242
'jit_hot_loop' => 1,
4343
'jit_hot_func' => 1,
4444
'jit_hot_return' => 1,

0 commit comments

Comments
 (0)