Skip to content

Commit 78f028c

Browse files
committed
fixed CS
1 parent f1e2fbd commit 78f028c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Symfony/Component/Form/Tests/Extension/Csrf/EventListener/CsrfValidationListenerTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Component\Form\Tests\Extension\Csrf\EventListener;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use Symfony\Component\Form\Form;
1615
use Symfony\Component\Form\FormBuilder;
1716
use Symfony\Component\Form\FormEvent;
1817
use Symfony\Component\Form\Extension\Csrf\EventListener\CsrfValidationListener;

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

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

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

0 commit comments

Comments
 (0)