Skip to content

Commit

Permalink
BUmp
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Nov 23, 2024
1 parent 4573dbf commit 35263ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/Psalm/Internal/ErrorHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use function set_exception_handler;

use const E_ALL;
use const E_STRICT;
use const STDERR;

/**
Expand Down Expand Up @@ -61,7 +60,7 @@ private function __construct()

private static function setErrorReporting(): void
{
error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
ini_set('display_errors', '1');
}

Expand Down
6 changes: 3 additions & 3 deletions src/Psalm/Internal/Fork/PsalmRestarter.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ final class PsalmRestarter extends XdebugHandler
'jit_buffer_size' => 128 * 1024 * 1024,
'max_accelerated_files' => 1_000_000,
'interned_strings_buffer' => 64,
'jit_max_root_traces' => 1_000_000,
'jit_max_side_traces' => 1_000_000,
'jit_max_exit_counters' => 1_000_000,
'jit_max_root_traces' => 100_000,
'jit_max_side_traces' => 100_000,
'jit_max_exit_counters' => 100_000,
'jit_hot_loop' => 1,
'jit_hot_func' => 1,
'jit_hot_return' => 1,
Expand Down

0 comments on commit 35263ad

Please sign in to comment.