Completed
Push — feature/0.7.0 ( 2d465b...a2171b )
by Ryuichi
03:17
created
WebStream/Log/LoggerCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function add(string $content)
44 44
     {
45
-        apcu_add($this->prefix . $this->index++, $content);
45
+        apcu_add($this->prefix.$this->index++, $content);
46 46
     }
47 47
 
48 48
     /**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $list = [];
55 55
         for ($i = 0; $i < $this->index; $i++) {
56
-            $list[] = apcu_fetch($this->prefix . $i);
56
+            $list[] = apcu_fetch($this->prefix.$i);
57 57
         }
58 58
 
59 59
         return $list;
Please login to merge, or discard this patch.