@@ -32,7 +32,7 @@ |
||
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 |
@@ -31,7 +31,7 @@ |
||
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 |
@@ -44,7 +44,7 @@ |
||
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 | } |