@@ -71,9 +71,9 @@ discard block |
||
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 |
||
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 | /** |