Efficiently\Larasset\Commands\AssetsCommand::deleteManifest PHP Méthode

deleteManifest() protected méthode

Delete Manifest file(s) in the application's assets path
protected deleteManifest ( ) : void
Résultat void
    protected function deleteManifest()
    {
        $manifests = find_paths(public_path('assets/') . 'manifest-*.json');
        foreach ($manifests as $manifest) {
            File::delete($manifest);
        }
    }