Test Setup Failed
Push — master ( 8fa6fb...d3fd71 )
by Alex
02:57
created
Profiler/PredisProfilerStorage.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,8 +365,8 @@
 block discarded – undo
365 365
         $redis = $this->getRedis();
366 366
 
367 367
         if ($redis->exists($key)) {
368
-        	$data = unserialize($redis->get($key));
369
-        	$data .= $value;
368
+            $data = unserialize($redis->get($key));
369
+            $data .= $value;
370 370
 
371 371
             return $redis->setex($key, $expiration, serialize($data));
372 372
         }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
         $data = array(
168 168
             'token' => $profile->getToken(),
169 169
             'parent' => $profile->getParentToken(),
170
-            'children' => array_map(function ($p) {
170
+            'children' => array_map(function($p) {
171 171
                 return $p->getToken();
172 172
             }, $profile->getChildren()),
173 173
             'data' => $profile->getCollectors(),
Please login to merge, or discard this patch.