summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/PendingChanges.php
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2024-11-22 23:58:56 +0000
committerGreg Roach <greg@subaqua.co.uk>2024-11-22 23:58:56 +0000
commite873f434551745f888937263ff89e80db3b0f785 (patch)
treec2ccdc2f7e9eb84a336dedcb75f4953fd46a6745 /app/Http/RequestHandlers/PendingChanges.php
parent95a8620a270e22e753770d980faee3cdf53d5566 (diff)
downloadwebtrees-e873f434551745f888937263ff89e80db3b0f785.tar.gz
webtrees-e873f434551745f888937263ff89e80db3b0f785.tar.bz2
webtrees-e873f434551745f888937263ff89e80db3b0f785.zip
PHP 8.3 allows class constants to have type hints
Diffstat (limited to 'app/Http/RequestHandlers/PendingChanges.php')
-rw-r--r--app/Http/RequestHandlers/PendingChanges.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/RequestHandlers/PendingChanges.php b/app/Http/RequestHandlers/PendingChanges.php
index d2fcbfb366..7760562d22 100644
--- a/app/Http/RequestHandlers/PendingChanges.php
+++ b/app/Http/RequestHandlers/PendingChanges.php
@@ -37,7 +37,7 @@ class PendingChanges implements RequestHandlerInterface
use ViewResponseTrait;
// Some servers may not have enough resources to show all the changes.
- private const MAX_CHANGES = 1000;
+ private const int MAX_CHANGES = 1000;
private PendingChangesService $pending_changes_service;