Passed
Push — master ( 79f6b2...41aa5f )
by Kirill
01:44
created
src/Storage/Drivers/EmulatingStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $key = $readable->getHash();
34 34
 
35
-        if (! \array_key_exists($key, $this->storage)) {
35
+        if (!\array_key_exists($key, $this->storage)) {
36 36
             $this->storage[$key] = $this->encode($then($readable));
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Storage/Drivers/ArrayStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     {
32 32
         $key = $readable->getHash();
33 33
 
34
-        if (! \array_key_exists($key, $this->storage)) {
34
+        if (!\array_key_exists($key, $this->storage)) {
35 35
             $this->storage[$key] = $then($readable);
36 36
         }
37 37
 
Please login to merge, or discard this patch.
src/Storage/Proxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function remember(Readable $readable, \Closure $then)
46 46
     {
47
-        return $this->front->remember($readable, function (Readable $readable) use ($then) {
47
+        return $this->front->remember($readable, function(Readable $readable) use ($then) {
48 48
             return $this->fallback->remember($readable, $then);
49 49
         });
50 50
     }
Please login to merge, or discard this patch.