option('prune-age') ?? config('backups.prune_age', 360); if (!$since || !is_digit($since)) { throw new InvalidArgumentException('The "--prune-age" argument must be a value greater than 0.'); } $query = $repository->getBuilder() ->whereNull('completed_at') ->where('created_at', '<=', CarbonImmutable::now()->subMinutes($since)->toDateTimeString()); $count = $query->count(); if (!$count) { $this->info('There are no orphaned backups to be marked as failed.'); return; } $this->warn("Marking {$count} backups that have not been marked as completed in the last {$since} minutes as failed."); $query->update([ 'is_successful' => false, 'completed_at' => CarbonImmutable::now(), 'updated_at' => CarbonImmutable::now(), ]); } }