From 22e3efcf909095828cc347f185fc29cdb8e3a947 Mon Sep 17 00:00:00 2001 From: Sergio Peris Date: Wed, 27 Jul 2022 16:42:22 +0200 Subject: [PATCH] Update ComponentMakeCommand.php (#43446) --- src/Illuminate/Foundation/Console/ComponentMakeCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Foundation/Console/ComponentMakeCommand.php b/src/Illuminate/Foundation/Console/ComponentMakeCommand.php index 6134d9ae1d13..2d944338c0a0 100644 --- a/src/Illuminate/Foundation/Console/ComponentMakeCommand.php +++ b/src/Illuminate/Foundation/Console/ComponentMakeCommand.php @@ -92,7 +92,7 @@ protected function writeView($onSuccess = null) file_put_contents( $path, '
- +
' ); @@ -112,7 +112,7 @@ protected function buildClass($name) if ($this->option('inline')) { return str_replace( ['DummyView', '{{ view }}'], - "<<<'blade'\n
\n \n
\nblade", + "<<<'blade'\n
\n \n
\nblade", parent::buildClass($name) ); }