We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a7566 commit 8dc28afCopy full SHA for 8dc28af
src/Illuminate/Auth/Console/MakeAuthCommand.php
@@ -90,9 +90,8 @@ protected function createDirectories()
90
protected function exportViews()
91
{
92
foreach ($this->views as $key => $value) {
93
-
94
- if (!$this->option('force') && file_exists(resource_path('views/'.$value))) {
95
- if (!$this->confirm('The view '.$value.' already exists, Do you wish overwrite it?')) {
+ if (! $this->option('force') && file_exists(resource_path('views/'.$value))) {
+ if (! $this->confirm('The view '.$value.' already exists, Do you wish overwrite it?')) {
96
continue;
97
}
98
0 commit comments