Devise\Support\Installer\InstallerController::postApplication PHP Method

postApplication() public method

Save the application setup
public postApplication ( ) : Redirect
return Redirect
    public function postApplication()
    {
        $appName = $this->Input->get('app_name', 'App');
        $migrations = $this->Input->get('app_migrations', 'no');
        $seeds = $this->Input->get('app_seeds', 'no');
        $configsOverride = $this->Input->get('configs_override', 'no');
        $this->InstallWizard->saveConfigsOverride($configsOverride);
        $this->InstallWizard->saveApplicationMigrationAndSeedSettings($migrations, $seeds);
        $this->InstallWizard->saveApplicationNamespace($appName);
        return $this->Redirect->to('install/create-user');
    }