Completed
Pull Request — master (#1138)
by Dovydas
04:08 queued 02:26
created
src/Support/Stub.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function getPath()
73 73
     {
74
-        $path = static::getBasePath() . $this->path;
74
+        $path = static::getBasePath().$this->path;
75 75
 
76
-        return file_exists($path) ? $path : __DIR__ . '/../Commands/stubs' . $this->path;
76
+        return file_exists($path) ? $path : __DIR__.'/../Commands/stubs'.$this->path;
77 77
     }
78 78
 
79 79
     /**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function saveTo($path, $filename)
135 135
     {
136
-        return file_put_contents($path . '/' . $filename, $this->getContents());
136
+        return file_put_contents($path.'/'.$filename, $this->getContents());
137 137
     }
138 138
 
139 139
     /**
Please login to merge, or discard this patch.