for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Auth\Console;
/**
* Class InstallCommand
*
* @package Arcanesoft\Auth\Console
* @author ARCANEDEV <[email protected]>
*/
class InstallCommand extends Command
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
* The name and signature of the console command.
* @var string
protected $signature = 'auth:install';
* The console command description.
protected $description = 'Install the Auth module.';
| Main Functions
* Execute the console command.
public function handle()
$this->call('db:seed', [
'--class' => \Arcanesoft\Auth\Seeds\DatabaseSeeder::class
]);
}