Completed
Push — master ( 3a7224...21ddf1 )
by Sergi Tur
07:19 queued 05:04
created
src/Filesystem/Filesystem.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     {
64 64
         $path = $this->getPath($file);
65 65
 
66
-        if (! file_exists($path)) {
66
+        if (!file_exists($path)) {
67 67
             throw new FileDoesNotExists;
68 68
         }
69 69
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public function createParentFolder($file)
97 97
     {
98
-        if (! file_exists($folder = dirname($file))) {
98
+        if (!file_exists($folder = dirname($file))) {
99 99
             return mkdir(dirname($file), 0775, true);
100 100
         }
101 101
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     protected function getPath($file)
121 121
     {
122
-        return $this->root . '/' . $file;
122
+        return $this->root.'/'.$file;
123 123
     }
124 124
 
125 125
     /**
Please login to merge, or discard this patch.