Skip to content

Commit 034ccc0

Browse files
Merge branch '5.3' into 5.4
* 5.3: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts [Notifier] Fix AllMySms bridge body content Revert "[DoctrineBridge] add support for the JSON type"
2 parents 4fc8ecf + dc07a31 commit 034ccc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Inline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ private static function evaluateScalar(string $scalar, int $flags, array &$refer
669669
// no break
670670
case \in_array($scalar[0], ['+', '-', '.'], true) || is_numeric($scalar[0]):
671671
if (Parser::preg_match('{^[+-]?[0-9][0-9_]*$}', $scalar)) {
672-
$scalar = str_replace('_', '', (string) $scalar);
672+
$scalar = str_replace('_', '', $scalar);
673673
}
674674

675675
switch (true) {

0 commit comments

Comments
 (0)