Laravel\SparkInstaller\Installation\RunSparkInstall::command PHP Method

command() protected method

Get the proper Spark installation command.
protected command ( ) : string
return string
    protected function command()
    {
        $command = 'php artisan spark:install --force';
        if ($this->command->input->getOption('braintree')) {
            $command .= ' --braintree';
        }
        if ($this->command->input->getOption('team-billing')) {
            $command .= ' --team-billing';
        }
        return $command;
    }