Sebpro\ArtisanExt\Commands\ExtDBPassword::handle PHP Method

handle() public method

Execute the console command.
public handle ( ) : void
return void
    public function handle()
    {
        $old_db_password = $this->laravel['config']['database.connections.' . $this->laravel['config']['database.default'] . '.password'];
        $file = base_path('.env');
        if (file_exists($file)) {
            file_put_contents($file, str_replace('DB_PASSWORD=' . $old_db_password, 'DB_PASSWORD=' . $this->argument('databasepassword'), file_get_contents($file)));
            if ($this->option('check')) {
                $this->info('The database password has been changed ' . 'successfully to: ' . $this->argument('databasepassword'));
                $this->laravel['config']['database.connections.' . $this->laravel['config']['database.default'] . '.password'] = $this->argument('databasepassword');
                try {
                    ArtisanExt::checkDb();
                    return $this->info('Succesfully connected to the database.');
                } catch (\PDOException $e) {
                    return $this->error('Failed to connect to the database.');
                }
            }
            return $this->info('The database password has been changed ' . 'successfully to: ' . $this->argument('databasepassword'));
        }
        return $this->error('The .env configuration file is missing.');
    }