Efficiently\Larasset\Commands\AssetsCommand::deleteManifest PHP 메소드

deleteManifest() 보호된 메소드

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