Passed
Pull Request — master (#63)
by Matthieu
04:43
created
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/DependencyInjection/AtlassianConnectExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $container->setParameter('atlassian_connect', $config['descriptor']);
21 21
         $container->setParameter('atlassian_connect_dev_tenant', $config['dev_tenant']);
22 22
 
23
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
23
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
24 24
         $loader->load('services.yml');
25 25
 
26 26
         if (class_exists(AbstractGuardAuthenticator::class)) {
Please login to merge, or discard this patch.