summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorfox <[email protected]>2021-03-05 21:56:27 +0300
committerfox <[email protected]>2021-03-05 21:56:27 +0300
commit42cb2e5112fb78ea724adf13f190c1d9bb48ddcb (patch)
tree534c10093f83f5d544dfb8909bfaba2a8a10ae08 /classes/config.php
parent2cd159e2cefaecb54233686cd949aac4d70b9320 (diff)
parent2e8b0642360503f2130a37b5be9b62c4027f3c2f (diff)
Merge pull request 'The type hint for 'DAEMON_MAX_CHILD_RUNTIME' should be T_INT' (#15) from wn/tt-rss:deamon-max-child-runtime-type-hint into master
Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/15
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php2
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 ],