Fix PHP 7.4 warnings #189

This commit is contained in:
Stéphane Goetz 2020-02-07 22:38:28 +01:00
parent de78382bf5
commit f268f889a4
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class BaseConfig extends ArrayObject
foreach ($newValues as $key => $value) {
// If the key doesn't exist yet,
// we can simply set it.
if (!array_key_exists($key, /** @scrutinizer ignore-type */ $this)) {
if (!array_key_exists($key, (array) $this)) {
$this[$key] = $value;
continue;
}
@ -39,7 +39,7 @@ class BaseConfig extends ArrayObject
public function hasValue($key)
{
return array_key_exists($key, /** @scrutinizer ignore-type */ $this);
return array_key_exists($key, (array) $this);
}
public function getValue($key)