Skip to content

Commit 8dc28af

Browse files
committed
changed the code to follow style guidelines
1 parent 90a7566 commit 8dc28af

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Illuminate/Auth/Console/MakeAuthCommand.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ protected function createDirectories()
9090
protected function exportViews()
9191
{
9292
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?')) {
93+
if (! $this->option('force') && file_exists(resource_path('views/'.$value))) {
94+
if (! $this->confirm('The view '.$value.' already exists, Do you wish overwrite it?')) {
9695
continue;
9796
}
9897
}

0 commit comments

Comments
 (0)