fix sytax error (missing space after comma)
This commit is contained in:
parent
55104cba14
commit
e7f965e70c
|
@ -463,7 +463,7 @@ abstract class MonitoredObject implements Filterable
|
||||||
if ($hiddenPattern) {
|
if ($hiddenPattern) {
|
||||||
$this->customvars = array_filter($this->customvars, function ($elem) use ($hiddenPattern) {
|
$this->customvars = array_filter($this->customvars, function ($elem) use ($hiddenPattern) {
|
||||||
return !($hiddenPattern && preg_match($hiddenPattern, $elem));
|
return !($hiddenPattern && preg_match($hiddenPattern, $elem));
|
||||||
},ARRAY_FILTER_USE_KEY);
|
}, ARRAY_FILTER_USE_KEY);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
|
Loading…
Reference in New Issue