@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * |
83 | 83 | * @param int $expiration Current expiration time value in seconds (reference). |
84 | 84 | */ |
85 | - public function get(string $name, int &$expiration = null) |
|
85 | + public function get(string $name, int & $expiration = null) |
|
86 | 86 | { |
87 | 87 | if (!$this->files->exists($filename = $this->makeFilename($name))) { |
88 | 88 | return null; |
@@ -179,6 +179,6 @@ discard block |
||
179 | 179 | */ |
180 | 180 | protected function makeFilename(string $name): string |
181 | 181 | { |
182 | - return $this->directory . md5($name) . '.' . $this->extension; |
|
182 | + return $this->directory.md5($name).'.'.$this->extension; |
|
183 | 183 | } |
184 | 184 | } |