Merge "Replace compact() with real array"

This commit is contained in:
jenkins-bot 2020-12-30 13:10:04 +00:00 committed by Gerrit Code Review
commit f3d3e3b238

View file

@ -161,13 +161,13 @@ class AbuseFilterViewList extends AbuseFilterView {
}
$this->showList(
compact(
'deleted',
'furtherOptions',
'querypattern',
'searchmode',
'scope'
),
[
'deleted' => $deleted,
'furtherOptions' => $furtherOptions,
'querypattern' => $querypattern,
'searchmode' => $searchmode,
'scope' => $scope,
],
$conds
);
}