We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 422d196 commit 21e6d31Copy full SHA for 21e6d31
src/Illuminate/Foundation/Console/MailMakeCommand.php
@@ -79,15 +79,15 @@ protected function writeMarkdownTemplate()
79
protected function writeView()
80
{
81
$path = $this->viewPath(
82
- str_replace('.', '/', $this->getView()) . '.blade.php'
+ str_replace('.', '/', $this->getView()).'.blade.php'
83
);
84
85
$this->files->ensureDirectoryExists(dirname($path));
86
87
$stub = str_replace(
88
'{{ quote }}',
89
Inspiring::quotes()->random(),
90
- file_get_contents(__DIR__ . '/stubs/view.stub')
+ file_get_contents(__DIR__.'/stubs/view.stub')
91
92
93
$this->files->put($path, $stub);
0 commit comments