Remove all "@phpstan-ignore-line" entries.

This commit is contained in:
James Cole
2026-03-06 07:39:12 +01:00
parent 705138aa27
commit 12f19c6c34
78 changed files with 254 additions and 157 deletions

View File

@@ -90,7 +90,7 @@ class WebhookRepository implements WebhookRepositoryInterface, UserGroupInterfac
->where('webhook_messages.sent', 0)
->where('webhook_messages.errored', 0)
->get(['webhook_messages.*'])
->filter(static fn (WebhookMessage $message): bool => $message->webhookAttempts()->count() <= 2) // @phpstan-ignore-line
->filter(static fn (WebhookMessage $message): bool => $message->webhookAttempts()->count() <= 2)
->splice(0, 3)
;
}