Skip to content

Commit 1896264

Browse files
Merge branch '4.4' into 5.3
* 4.4: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts Revert "[DoctrineBridge] add support for the JSON type"
2 parents eec73dd + 1cace5a commit 1896264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ErrorHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ public function scopeAt(int $levels, bool $replace = false): int
348348
public function traceAt(int $levels, bool $replace = false): int
349349
{
350350
$prev = $this->tracedErrors;
351-
$this->tracedErrors = (int) $levels;
351+
$this->tracedErrors = $levels;
352352
if (!$replace) {
353353
$this->tracedErrors |= $prev;
354354
}

0 commit comments

Comments
 (0)