Completed
Push — master ( e31356...1517fb )
by John
06:59
created
tests/functional/App/app/TestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 use Symfony\Component\Config\Loader\LoaderInterface;
4 4
 use Symfony\Component\HttpKernel\Kernel;
@@ -29,6 +29,6 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function registerContainerConfiguration(LoaderInterface $loader)
31 31
     {
32
-        $loader->load(__DIR__ . '/config_' . $this->getEnvironment() . '.yml');
32
+        $loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml');
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/DependencyInjection/JwtAuthenticationFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\JwtBundle package.
4 4
  *
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
             ? ChildDefinition::class
46 46
             : DefinitionDecorator::class;
47 47
 
48
-        $providerId           = 'security.authentication.provider.jwt.' . $id;
48
+        $providerId = 'security.authentication.provider.jwt.'.$id;
49 49
         $container
50 50
             ->setDefinition($providerId, new $childDefinitionClass('jwt.security.authentication.provider'))
51 51
             ->replaceArgument(0, new Reference($userProvider));
52 52
 
53
-        $listenerId = 'security.authentication.listener.jwt.' . $id;
53
+        $listenerId = 'security.authentication.listener.jwt.'.$id;
54 54
         $container->setDefinition($listenerId, new $childDefinitionClass('jwt.security.authentication.listener'));
55 55
 
56 56
         return [$providerId, $listenerId, $defaultEntryPoint];
Please login to merge, or discard this patch.