Laravel\Installer\Console\NewCommand::cleanUp PHP Method

cleanUp() protected method

Clean-up the Zip file.
protected cleanUp ( string $zipFile )
$zipFile string
    protected function cleanUp($zipFile)
    {
        @chmod($zipFile, 0777);
        @unlink($zipFile);
        return $this;
    }