MarvinLabs\SetupWizard\Triggers\EnvFileTrigger::shouldLaunchWizard PHP Method

shouldLaunchWizard() public method

Indicates if the wizard should be launched or not
public shouldLaunchWizard ( ) : boolean
return boolean
    function shouldLaunchWizard()
    {
        $envFilePath = base_path('.env');
        return !file_exists($envFilePath);
    }
EnvFileTrigger