Devise\Support\Console\DeviseInstallCommand::runInstallCommands PHP Метод

runInstallCommands() публичный Метод

Runs the install commands for migrations, seeds, publishing assets and configs
public runInstallCommands ( ) : void
Результат void
    public function runInstallCommands()
    {
        $this->changeDatabaseConfigFile();
        $this->changeEmailConfigFile();
        $this->DevisePublishAssetsCommand->handle();
        if ($this->env('APP_MIGRATIONS') != 'no') {
            $this->runApplicationMigrations();
        }
        $this->DeviseMigrateCommand->handle();
        $this->DeviseSeedCommand->handle();
        if ($this->env('APP_SEEDS') != 'no') {
            $this->runApplicationSeeds();
        }
        if ($this->env('CONFIGS_OVERRIDE') == 'yes') {
            $this->DevisePublishConfigsCommand->handle();
        }
        if ($this->env('APP_NAME')) {
            $this->Artisan->call('app:name', ['name' => $this->env('APP_NAME')]);
        }
    }