@@ -42,7 +42,7 @@ discard block |
||
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 |
||
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; |