Laravel\SparkInstaller\Installation\DownloadSpark::install PHP Method

install() public method

Run the installation helper.
public install ( ) : void
return void
    public function install()
    {
        $this->extractZip($this->downloadZip());
        rename($this->sparkPath(), $this->command->path . '/spark');
        (new Filesystem())->deleteDirectory($this->command->path . '/spark-new');
    }