Completed
Push — master ( b69735...6d6276 )
by John
05:05
created
src/Security/RequestMatcher.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 matches(Request $request)
39 39
     {
40
-        if(!$request->attributes->has(RequestMeta::ATTRIBUTE_URI)){
40
+        if (!$request->attributes->has(RequestMeta::ATTRIBUTE_URI)) {
41 41
             return false;
42 42
         }
43 43
         $description = $this->repository->get($request->attributes->get(RequestMeta::ATTRIBUTE_URI));
Please login to merge, or discard this patch.
tests/functional/PetStore/app/TestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
             new KleijnWeb\SwaggerBundle\Tests\Functional\PetStore\PetStoreBundle()
17 17
         ];
18 18
 
19
-        if($this->getEnvironment() === 'secure'){
19
+        if ($this->getEnvironment() === 'secure') {
20 20
             $bundles[] = new \Symfony\Bundle\SecurityBundle\SecurityBundle();
21 21
         }
22 22
 
@@ -28,6 +28,6 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function registerContainerConfiguration(LoaderInterface $loader)
30 30
     {
31
-        $loader->load(__DIR__ . '/config_' . $this->getEnvironment() . '.yml');
31
+        $loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml');
32 32
     }
33 33
 }
Please login to merge, or discard this patch.