Completed
Push — master ( 77776e...82a0df )
by Sergi Tur
03:22
created
src/Filesystem/Filesystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $path = $this->getPath($file);
64 64
 
65
-        if (! file_exists($path)) {
65
+        if (!file_exists($path)) {
66 66
             throw new FileDoesNotExists;
67 67
         }
68 68
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      */
102 102
     protected function getPath($file)
103 103
     {
104
-        return $this->root . '/' . $file;
104
+        return $this->root.'/'.$file;
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.