@@ -44,10 +44,10 @@ discard block |
||
44 | 44 | { |
45 | 45 | try { |
46 | 46 | $this->filesystem->overwrite( |
47 | - $path = resource_path('views/' . $this->viewPath()), |
|
47 | + $path = resource_path('views/'.$this->viewPath()), |
|
48 | 48 | $this->filesystem->get($this->getStubPath()) |
49 | 49 | ); |
50 | - $this->info('File ' . $path . ' created'); |
|
50 | + $this->info('File '.$path.' created'); |
|
51 | 51 | } catch (\Exception $e) { |
52 | 52 | print_r($e->getMessage()); |
53 | 53 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | protected function getStubPath() |
60 | 60 | { |
61 | - return __DIR__ . '/stubs/view.stub'; |
|
61 | + return __DIR__.'/stubs/view.stub'; |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | protected function constructViewBaldeName($name) |
80 | 80 | { |
81 | - return $this->dottedPathToSlahesPath($name) . '.blade.php'; |
|
81 | + return $this->dottedPathToSlahesPath($name).'.blade.php'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |