Passed
Branch master (f19b79)
by Shiyu
02:36
created
Category
src/Eviction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      */
99 99
     public function polling() : void
100 100
     {
101
-        if ($this->nearest > 0 && $this->nearest -- > 0) {
101
+        if ($this->nearest > 0 && $this->nearest-- > 0) {
102 102
             return;
103 103
         }
104 104
 
Please login to merge, or discard this patch.
src/Refreshing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         $this->daemons[$key] = $daemon;
42 42
 
43
-        $refresher = co(function () use ($key) {
43
+        $refresher = co(function() use ($key) {
44 44
             $this->values[$key] = yield $this->daemons[$key]();
45 45
         });
46 46
 
Please login to merge, or discard this patch.