REBELinBLUE\Deployer\Console\Commands\UpdateApp::verifyInstalled PHP Method

verifyInstalled() private method

Ensures that Deployer has actually been installed.
private verifyInstalled ( ) : boolean
return boolean
    private function verifyInstalled()
    {
        if (config('app.key') === false || config('app.key') === 'SomeRandomString') {
            $this->block(['Deployer has not been installed', PHP_EOL, 'Please use "php artisan app:install" instead.']);
            return false;
        }
        return true;
    }