Skip to content

Commit 377354b

Browse files
CS fix
1 parent 3203eec commit 377354b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Resources/config/annotations.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
->args([
3737
service('annotations.reader'),
3838
inline_service(DoctrineProvider::class)->args([
39-
inline_service(ArrayAdapter::class)
39+
inline_service(ArrayAdapter::class),
4040
]),
4141
abstract_arg('Debug-Flag'),
4242
])
@@ -70,7 +70,7 @@
7070

7171
->set('annotations.cache', DoctrineProvider::class)
7272
->args([
73-
service('annotations.cache_adapter')
73+
service('annotations.cache_adapter'),
7474
])
7575
->tag('container.hot_path')
7676

Tests/Controller/AbstractControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
use Symfony\Component\HttpFoundation\StreamedResponse;
3737
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
3838
use Symfony\Component\HttpKernel\HttpKernelInterface;
39+
use Symfony\Component\Routing\RouterInterface;
3940
use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
4041
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
4142
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
@@ -44,7 +45,6 @@
4445
use Symfony\Component\Security\Core\User\User;
4546
use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface;
4647
use Symfony\Component\Serializer\SerializerInterface;
47-
use Symfony\Component\Routing\RouterInterface;
4848
use Symfony\Component\WebLink\Link;
4949
use Twig\Environment;
5050

0 commit comments

Comments
 (0)