Spatie\MediaLibrary\Commands\CleanCommand::handle PHP Метод

handle() публичный Метод

Handle command.
public handle ( )
    public function handle()
    {
        if (!$this->confirmToProceed()) {
            return;
        }
        $this->isDryRun = $this->option('dry-run');
        $this->deleteFilesGeneratedForDeprecatedConversions();
        $this->deleteOrphanedFiles();
        $this->info('All done!');
    }