@@ -88,7 +88,7 @@ |
||
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 | /** |
@@ -20,7 +20,7 @@ |
||
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)) { |