Test Setup Failed
Push — master ( 8c5f4b...dcf915 )
by Alexpts
03:11
created
src/Adapter/RedisAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function get(string $key): int
20 20
     {
21
-        return (int)$this->redis->get($key);
21
+        return (int) $this->redis->get($key);
22 22
     }
23 23
 
24 24
     public function inc(string $key, int $ttl = 60): int
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function reset(string $key): bool
35 35
     {
36
-        return (bool)$this->redis->del($key);
36
+        return (bool) $this->redis->del($key);
37 37
     }
38 38
 
39 39
     public function isExceeded(string $key, int $max): bool
Please login to merge, or discard this patch.