MathiasGrimm\LaravelDotEnvGen\DotEnvGenCommand::handle PHP Method

handle() public method

Execute the console command.
public handle ( ) : mixed
return mixed
    public function handle()
    {
        $this->gatherFiles();
        $this->scanFiles();
        $this->scanEnv();
        $this->generateFile();
        $this->info('Done. Results:');
        $this->showResults();
        $this->info('By Laravel Dot Env Generator - https://github.com/mathiasgrimm/laravel-dot-env-gen');
    }