Completed
Push — master ( 81fe65...156170 )
by Ryota
04:40
created
Tests/Render/SsrRenderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         ];
40 40
 
41 41
         $baracoa = $this->prophesize(BaracoaInterface::class);
42
-        $baracoa->render(Argument::any(),Argument::any(),Argument::any())
42
+        $baracoa->render(Argument::any(), Argument::any(), Argument::any())
43 43
             ->willReturn("string");
44 44
 
45 45
         $ssr = new Ssr([]);
Please login to merge, or discard this patch.
Render/SsrRender.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         );
40 40
     }
41 41
 
42
-    private function filter(array $keys , array $parameters)
42
+    private function filter(array $keys, array $parameters)
43 43
     {
44 44
         if ($keys === ['*']) {
45 45
             return $parameters;
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             throw new \LogicException(implode(',', $errorKeys));
51 51
         }
52 52
 
53
-        return array_filter((array) $parameters, function ($key) use ($keys) {
53
+        return array_filter((array) $parameters, function($key) use ($keys) {
54 54
             return in_array($key, $keys);
55 55
         }, ARRAY_FILTER_USE_KEY);
56 56
     }
Please login to merge, or discard this patch.
DependencyInjection/PolidogSsrExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $container->setParameter('polidog_ssr.baracoa.object', $config['baracoa']['object']);
27 27
         $container->setParameter('polidog_ssr.baracoa.cache_object', $config['baracoa']['cache_object']);
28 28
 
29
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
29
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
30 30
         $loader->load('services.yml');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
Cache/ApcuCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 
81 81
     private function getKey($key)
82 82
     {
83
-        return $this->namespace . '_' . $key;
83
+        return $this->namespace.'_'.$key;
84 84
     }
85 85
 
86 86
     private function getMultipleKeys($keys)
Please login to merge, or discard this patch.