Skip to content

Commit 6de93a2

Browse files
Merge branch '6.1' into 6.2
* 6.1: CS fixes Bump Symfony version to 6.1.3 Update VERSION for 6.1.2 Update CHANGELOG for 6.1.2 Bump Symfony version to 6.0.11 Update VERSION for 6.0.10 Update CHANGELOG for 6.0.10 Bump Symfony version to 5.4.11 Update VERSION for 5.4.10 Update CHANGELOG for 5.4.10 Bump Symfony version to 4.4.44 Update VERSION for 4.4.43 Update CONTRIBUTORS for 4.4.43 Update CHANGELOG for 4.4.43
2 parents 150c4cb + f11d812 commit 6de93a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function dump(mixed $input, int $inline = 0, int $indent = 0, int $flags
106106
continue;
107107
}
108108

109-
if ($inline - 1 <= 0 || null === $value->getValue() || is_scalar($value->getValue())) {
109+
if ($inline - 1 <= 0 || null === $value->getValue() || \is_scalar($value->getValue())) {
110110
$output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
111111
} else {
112112
$output .= "\n";

0 commit comments

Comments
 (0)