Skip to content

Commit 4736b77

Browse files
keradusnicolas-grekas
authored andcommitted
chore: CS fixes
1 parent daad23a commit 4736b77

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

Tests/DependencyInjection/ConfigurationTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@ public function testInvalidAssetsConfiguration(array $assetConfig, $expectedMess
224224
$this->expectExceptionMessage($expectedMessage);
225225

226226
$processor->processConfiguration($configuration, [
227-
[
228-
'http_method_override' => false,
229-
'handle_all_throwables' => true,
230-
'php_errors' => ['log' => true],
231-
'assets' => $assetConfig,
232-
],
233-
]);
227+
[
228+
'http_method_override' => false,
229+
'handle_all_throwables' => true,
230+
'php_errors' => ['log' => true],
231+
'assets' => $assetConfig,
232+
],
233+
]);
234234
}
235235

236236
public static function provideInvalidAssetConfigurationTests(): iterable

Tests/Routing/RedirectableCompiledUrlMatcherTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public function testRedirectWhenNoSlash()
2727

2828
$matcher = $this->getMatcher($routes, $context = new RequestContext());
2929

30-
$this->assertEquals([
30+
$this->assertEquals(
31+
[
3132
'_controller' => 'Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction',
3233
'path' => '/foo/',
3334
'permanent' => true,
@@ -47,7 +48,8 @@ public function testSchemeRedirect()
4748

4849
$matcher = $this->getMatcher($routes, $context = new RequestContext());
4950

50-
$this->assertEquals([
51+
$this->assertEquals(
52+
[
5153
'_controller' => 'Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction',
5254
'path' => '/foo',
5355
'permanent' => true,

0 commit comments

Comments
 (0)