Passed
Push — master ( d2f042...5da155 )
by Matthieu
04:29
created
src/Security/JWTAuthenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
66 66
     {
67
-        return new Response('Authentication Failed: ' . $exception->getMessage(), 403);
67
+        return new Response('Authentication Failed: '.$exception->getMessage(), 403);
68 68
     }
69 69
 
70 70
     public function start(Request $request, AuthenticationException $authException = null): Response
Please login to merge, or discard this patch.
src/Security/LegacyJWTAuthenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
     public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
90 90
     {
91
-        return new Response('Authentication Failed: ' . $exception->getMessage(), 403);
91
+        return new Response('Authentication Failed: '.$exception->getMessage(), 403);
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/Resources/config/routing.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 use AtlassianConnectBundle\Controller\DescriptorController;
4 4
 use AtlassianConnectBundle\Controller\HandshakeController;
5 5
 use AtlassianConnectBundle\Controller\UnlicensedController;
6 6
 use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
7 7
 
8
-return function (RoutingConfigurator $routes) {
8
+return function(RoutingConfigurator $routes) {
9 9
     $routes
10 10
         ->add('atlassian_connect_descriptor', '/atlassian-connect.json')
11 11
             ->controller([DescriptorController::class, 'indexAction'])
Please login to merge, or discard this patch.