diff options
author | 2024-01-09 20:33:35 +0100 | |
---|---|---|
committer | 2024-01-09 20:33:35 +0100 | |
commit | 0bf5dbbc0ba46cc27fe40b554b0c3c0ba705ef8b (patch) | |
tree | 6943f5a47b300964e12b4783fd385bf751e339d9 /lib/Configuration.php | |
parent | 3ce94409ab650e042993480d638482a89901776d (diff) | |
download | rss-bridge-0bf5dbbc0ba46cc27fe40b554b0c3c0ba705ef8b.tar.gz rss-bridge-0bf5dbbc0ba46cc27fe40b554b0c3c0ba705ef8b.tar.zst rss-bridge-0bf5dbbc0ba46cc27fe40b554b0c3c0ba705ef8b.zip |
chore: add tools for manually administrating the configured cache (#3867)
Diffstat (limited to 'lib/Configuration.php')
-rw-r--r-- | lib/Configuration.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Configuration.php b/lib/Configuration.php index ac7d29bf..ab1c9cdf 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -59,7 +59,7 @@ final class Configuration } $config = parse_ini_file(__DIR__ . '/../config.default.ini.php', true, INI_SCANNER_TYPED); if (!$config) { - throw new \Exception('Error parsing config'); + throw new \Exception('Error parsing ini config'); } foreach ($config as $header => $section) { foreach ($section as $key => $value) { |