diff options
| author | wn_ <invalid@email.com> | 2021-03-05 17:32:32 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2021-03-05 17:32:32 +0000 |
| commit | 2e8b0642360503f2130a37b5be9b62c4027f3c2f (patch) | |
| tree | 534c10093f83f5d544dfb8909bfaba2a8a10ae08 /classes | |
| parent | 2cd159e2cefaecb54233686cd949aac4d70b9320 (diff) | |
The type hint for 'DAEMON_MAX_CHILD_RUNTIME' should be T_INT
Diffstat (limited to 'classes')
| -rw-r--r-- | classes/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/config.php b/classes/config.php index 68dd47f35..1625ccb79 100644 --- a/classes/config.php +++ b/classes/config.php @@ -87,7 +87,7 @@ class Config { Config::LOG_DESTINATION => [ "sql", Config::T_STRING ], Config::LOCAL_OVERRIDE_STYLESHEET => [ "local-overrides.css", Config::T_STRING ], - Config::DAEMON_MAX_CHILD_RUNTIME => [ 1800, Config::T_STRING ], + Config::DAEMON_MAX_CHILD_RUNTIME => [ 1800, Config::T_INT ], Config::DAEMON_MAX_JOBS => [ 2, Config::T_INT ], Config::FEED_FETCH_TIMEOUT => [ 45, Config::T_INT ], Config::FEED_FETCH_NO_CACHE_TIMEOUT => [ 15, Config::T_INT ], |