Skip to content

Commit 731acfa

Browse files
keradusnicolas-grekas
authored andcommitted
chore: CS fixes
1 parent 1052e00 commit 731acfa

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Tests/RouteCompilerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ public function testRouteWithVariableNameStartingWithADigit(string $name)
290290
public static function getVariableNamesStartingWithADigit()
291291
{
292292
return [
293-
['09'],
294-
['123'],
295-
['1e2'],
293+
['09'],
294+
['123'],
295+
['1e2'],
296296
];
297297
}
298298

Tests/RouteTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function testOptions()
6565
$route = new Route('/{foo}');
6666
$route->setOptions(['foo' => 'bar']);
6767
$this->assertEquals(array_merge([
68-
'compiler_class' => 'Symfony\\Component\\Routing\\RouteCompiler',
68+
'compiler_class' => 'Symfony\\Component\\Routing\\RouteCompiler',
6969
], ['foo' => 'bar']), $route->getOptions(), '->setOptions() sets the options');
7070
$this->assertEquals($route, $route->setOptions([]), '->setOptions() implements a fluent interface');
7171

@@ -156,13 +156,13 @@ public function testSetInvalidRequirement($req)
156156
public static function getInvalidRequirements()
157157
{
158158
return [
159-
[''],
160-
['^$'],
161-
['^'],
162-
['$'],
163-
['\A\z'],
164-
['\A'],
165-
['\z'],
159+
[''],
160+
['^$'],
161+
['^'],
162+
['$'],
163+
['\A\z'],
164+
['\A'],
165+
['\z'],
166166
];
167167
}
168168

0 commit comments

Comments
 (0)