Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/AuthCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@

use InvalidArgumentException;
use Illuminate\Console\Command;
use Illuminate\Console\DetectsApplicationNamespace;

class AuthCommand extends Command
{
use DetectsApplicationNamespace;

/**
* The name and signature of the console command.
*
Expand Down Expand Up @@ -129,7 +126,7 @@ protected function compileControllerStub()
{
return str_replace(
'{{namespace}}',
$this->getAppNamespace(),
$this->laravel->getNamespace(),
file_get_contents(__DIR__.'/Auth/stubs/controllers/HomeController.stub')
);
}
Expand Down