| @@ -53,11 +53,11 @@ discard block | ||
| 53 | 53 |      { | 
| 54 | 54 |          try { | 
| 55 | 55 | $this->filesystem->make( | 
| 56 | -                $path = resource_path('views/' . $this->viewPath()), | |
| 56 | +                $path = resource_path('views/'.$this->viewPath()), | |
| 57 | 57 | $this->filesystem->get($this->getStubPath()), | 
| 58 | 58 | true | 
| 59 | 59 | ); | 
| 60 | -            $this->info('File ' . $path . ' created'); | |
| 60 | +            $this->info('File '.$path.' created'); | |
| 61 | 61 |          } catch (\Exception $e) { | 
| 62 | 62 | $this->error($e->getMessage()); | 
| 63 | 63 | } | 
| @@ -68,7 +68,7 @@ discard block | ||
| 68 | 68 | */ | 
| 69 | 69 | protected function getStubPath() | 
| 70 | 70 |      { | 
| 71 | - return __DIR__ . '/stubs/view.blade.php'; | |
| 71 | + return __DIR__.'/stubs/view.blade.php'; | |
| 72 | 72 | } | 
| 73 | 73 | |
| 74 | 74 | /** | 
| @@ -89,7 +89,7 @@ discard block | ||
| 89 | 89 | */ | 
| 90 | 90 | protected function constructViewBladeName($name) | 
| 91 | 91 |      { | 
| 92 | - return $this->dottedPathToSlashesPath($name) . '.blade.php'; | |
| 92 | + return $this->dottedPathToSlashesPath($name).'.blade.php'; | |
| 93 | 93 | } | 
| 94 | 94 | |
| 95 | 95 | /** |