Passed
Push — master ( d8988b...9b0479 )
by Pavel
02:15
created
Decorators/Sha1KeyStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
 
31 31
         $stringData = json_encode($data);
32 32
 
33
-        return $this->keyPrefix.sha1($stringData);
33
+        return $this->keyPrefix . sha1($stringData);
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
Decorators/ProfiledClientStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         return array_filter(
67 67
             $this->pairs,
68
-            function (array $row) {
68
+            function(array $row) {
69 69
                 return isset($row['response']);
70 70
             }
71 71
         );
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         return array_filter(
77 77
             $this->pairs,
78
-            function (array $row) {
78
+            function(array $row) {
79 79
                 return !isset($row['response']);
80 80
             }
81 81
         );
Please login to merge, or discard this patch.