Move errors ignoring into phpstan.neon

This commit is contained in:
slawkens
2024-02-01 22:39:48 +01:00
parent 42ce80170e
commit 765baf248f
3 changed files with 8 additions and 5 deletions

View File

@@ -1111,7 +1111,7 @@ function getTopPlayers($limit = 5) {
$columns[] = 'online';
}
$players = Player::query()/** @phpstan-ignore-line */
$players = Player::query()
->select($columns)
->withOnlineStatus()
->notDeleted()