MarvinLabs\SetupWizard\Triggers\EnvFileTrigger::shouldLaunchWizard PHP 메소드

shouldLaunchWizard() 공개 메소드

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