fix sytax error (missing space after comma)

This commit is contained in:
Nicolai Buchwitz 2019-11-06 15:51:56 +01:00 committed by Johannes Meyer
parent 55104cba14
commit e7f965e70c
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ abstract class MonitoredObject implements Filterable
if ($hiddenPattern) {
$this->customvars = array_filter($this->customvars, function ($elem) use ($hiddenPattern) {
return !($hiddenPattern && preg_match($hiddenPattern, $elem));
},ARRAY_FILTER_USE_KEY);
}, ARRAY_FILTER_USE_KEY);
}
return $this;