Completed
Push — master ( ea5360...1f67fc )
by Marc
13:10 queued 10:21
created
Generator/SymfonyUrlGenerator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 
16 16
 use Symfony\Component\Routing\Exception\ExceptionInterface;
17 17
 use Symfony\Component\Routing\RouterInterface;
18
-
19 18
 use Visithor\Factory\UrlChainFactory;
20 19
 use Visithor\Factory\UrlFactory;
21 20
 use Visithor\Generator\UrlGenerator;
Please login to merge, or discard this patch.
Client/SymfonyClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             ->getAuthenticationUser($url->getOption('role'));
153 153
 
154 154
         $token = new UsernamePasswordToken($user, null, $firewall, [$role]);
155
-        $session->set('_security_' . $firewall, serialize($token));
155
+        $session->set('_security_'.$firewall, serialize($token));
156 156
         $session->save();
157 157
 
158 158
         $cookie = new Cookie(
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     protected function expireAuthentication(Url $url)
178 178
     {
179 179
         $session = $this->session;
180
-        $session->remove('_security_' . $url->getOption('firewall'));
180
+        $session->remove('_security_'.$url->getOption('firewall'));
181 181
         $session->save();
182 182
 
183 183
         $this
Please login to merge, or discard this patch.
Tests/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function registerContainerConfiguration(LoaderInterface $loader)
39 39
     {
40
-        $loader->load(dirname(__FILE__) . '/config.yml');
40
+        $loader->load(dirname(__FILE__).'/config.yml');
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
Tests/FakeBundle/DependencyInjection/FakeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     {
38 38
         $loader = new YamlFileLoader(
39 39
             $container, new
40
-            FileLocator(__DIR__ . '/../Resources/config')
40
+            FileLocator(__DIR__.'/../Resources/config')
41 41
         );
42 42
 
43 43
         $loader->load('environment.yml');
Please login to merge, or discard this patch.
DependencyInjection/VisithorExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     {
38 38
         $loader = new YamlFileLoader(
39 39
             $container, new
40
-            FileLocator(__DIR__ . '/../Resources/config')
40
+            FileLocator(__DIR__.'/../Resources/config')
41 41
         );
42 42
 
43 43
         $loader->load('environment.yml');
Please login to merge, or discard this patch.