diff --git a/src/Illuminate/Foundation/Console/MailMakeCommand.php b/src/Illuminate/Foundation/Console/MailMakeCommand.php index 2ed4295d007b..31ef3c394be5 100644 --- a/src/Illuminate/Foundation/Console/MailMakeCommand.php +++ b/src/Illuminate/Foundation/Console/MailMakeCommand.php @@ -79,7 +79,7 @@ protected function writeMarkdownTemplate() protected function writeView() { $path = $this->viewPath( - str_replace('.', '/', $this->getView()) . '.blade.php' + str_replace('.', '/', $this->getView()).'.blade.php' ); $this->files->ensureDirectoryExists(dirname($path)); @@ -87,7 +87,7 @@ protected function writeView() $stub = str_replace( '{{ quote }}', Inspiring::quotes()->random(), - file_get_contents(__DIR__ . '/stubs/view.stub') + file_get_contents(__DIR__.'/stubs/view.stub') ); $this->files->put($path, $stub);