Completed
Push — master ( 333e10...db7eb5 )
by Tobias
23:35
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                                 ->beforeNormalization()
182 182
                                     ->ifString()
183 183
                                     ->then(
184
-                                        function ($v) {
184
+                                        function($v) {
185 185
                                             return (array) $v;
186 186
                                         }
187 187
                                     )
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                                 ->beforeNormalization()
194 194
                                     ->ifString()
195 195
                                     ->then(
196
-                                        function ($v) {
196
+                                        function($v) {
197 197
                                             return (array) $v;
198 198
                                         }
199 199
                                     )
Please login to merge, or discard this patch.
src/DataCollector/ProxyFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@
 block discarded – undo
67 67
         }
68 68
     }
69 69
 
70
+    /**
71
+     * @param string $namespace
72
+     */
70 73
     private function getProxyClass($namespace)
71 74
     {
72 75
         return 'php_cache_proxy_'.str_replace('\\', '_', $namespace);
Please login to merge, or discard this patch.
src/Resources/proxy/template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
         } finally {
91 91
             $event->end = microtime(true);
92 92
         }
93
-        $f = function () use ($result, $event) {
93
+        $f = function() use ($result, $event) {
94 94
             $event->result = [];
95 95
             foreach ($result as $key => $item) {
96 96
                 if ($item->isHit()) {
Please login to merge, or discard this patch.