Skip to content

Commit 21e6d31

Browse files
committed
Apply fixes from StyleCI
1 parent 422d196 commit 21e6d31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Foundation/Console/MailMakeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ protected function writeMarkdownTemplate()
7979
protected function writeView()
8080
{
8181
$path = $this->viewPath(
82-
str_replace('.', '/', $this->getView()) . '.blade.php'
82+
str_replace('.', '/', $this->getView()).'.blade.php'
8383
);
8484

8585
$this->files->ensureDirectoryExists(dirname($path));
8686

8787
$stub = str_replace(
8888
'{{ quote }}',
8989
Inspiring::quotes()->random(),
90-
file_get_contents(__DIR__ . '/stubs/view.stub')
90+
file_get_contents(__DIR__.'/stubs/view.stub')
9191
);
9292

9393
$this->files->put($path, $stub);

0 commit comments

Comments
 (0)