Fix type error

main
Jordi Boggiano 2 years ago
parent f863855647
commit ef5a128973
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -341,7 +341,7 @@ class Config
// numbers with kb/mb/gb support, without env var support
case 'cache-files-maxsize':
if (!Preg::isMatch('/^\s*([0-9.]+)\s*(?:([kmg])(?:i?b)?)?\s*$/i', $this->config[$key], $matches)) {
if (!Preg::isMatch('/^\s*([0-9.]+)\s*(?:([kmg])(?:i?b)?)?\s*$/i', (string) $this->config[$key], $matches)) {
throw new \RuntimeException(
"Could not parse the value of '$key': {$this->config[$key]}"
);

Loading…
Cancel
Save