Skip to content

Commit f3064a2

Browse files
Merge branch '5.4' into 6.0
* 5.4: [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 e40ca91 + 034ccc0 commit f3064a2

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
@@ -637,7 +637,7 @@ private static function evaluateScalar(string $scalar, int $flags, array &$refer
637637
// no break
638638
case \in_array($scalar[0], ['+', '-', '.'], true) || is_numeric($scalar[0]):
639639
if (Parser::preg_match('{^[+-]?[0-9][0-9_]*$}', $scalar)) {
640-
$scalar = str_replace('_', '', (string) $scalar);
640+
$scalar = str_replace('_', '', $scalar);
641641
}
642642

643643
switch (true) {

0 commit comments

Comments
 (0)