Completed
Push — master ( ecf71f...65af6f )
by Sam
09:47
created
src/Filesystem/FilesystemManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     public function zonePath()
82 82
     {
83
-        return $this->zonePath ?: $this->basePath.DIRECTORY_SEPARATOR.'zones';
83
+        return $this->zonePath ?: $this->basePath . DIRECTORY_SEPARATOR . 'zones';
84 84
     }
85 85
 
86 86
     /**
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function getZone(string $zone)
94 94
     {
95
-        $zoneFile = $this->basePath().DIRECTORY_SEPARATOR.$zone.'.json';
95
+        $zoneFile = $this->basePath() . DIRECTORY_SEPARATOR . $zone . '.json';
96 96
 
97 97
         return new JsonFileSystemResolver($zoneFile);
98 98
     }
Please login to merge, or discard this patch.