8000 fixed CS · symfony/symfony@07bf70d · GitHub
[go: up one dir, main page]

Skip to content

Commit 07bf70d

Browse files
committed
fixed CS
1 parent 975411d commit 07bf70d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/MarkdownDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
185185
;
186186

187187
foreach ($definition->getAutowiringTypes() as $autowiringType) {
188-
$output .= "\n" . '- Autowiring Type: `' . $autowiringType . '`';
188+
$output .= "\n".'- Autowiring Type: `'.$autowiringType.'`';
189189
}
190190

191191
if ($definition->getFile()) {

src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function () {},
249249

250250
// assertEquals() does not like NAN values.
251251
$this->assertEquals($array[$i][0], 'float');
252-
$this->assertTrue(is_nan($array[$i++][1]));
252+
$this->assertNan($array[$i++][1]);
253253
}
254254

255255
public function testRecursionInArguments()

src/Symfony/Component/VarDumper/Dumper/CliDumper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ public function dumpScalar(Cursor $cursor, $type, $value)
127127
$style = 'num';
128128

129129
switch (true) {
130-
case INF === $value: $value = 'INF'; break;
130+
case INF === $value: $value = 'INF'; break;
131131
case -INF === $value: $value = '-INF'; break;
132-
case is_nan($value): $value = 'NAN'; break;
132+
case is_nan($value): $value = 'NAN'; break;
133133
default:
134134
$value = (string) $value;
135135
if (false === strpos($value, $this->decimalPoint)) {

0 commit comments

Comments
 (0)
0