Completed
Branch feature/pre-split (d27030)
by Anton
04:29
created
source/Spiral/Cache/Stores/FileStore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.