fix accidentaly deleted comma

This commit is contained in:
maks 2018-08-17 15:13:13 +02:00 committed by GitHub
parent aa1e576a3f
commit 16217f3655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ class RequestHandler extends ViewableData
}
// Don't allow access to any non-public methods (inspect instance plus all extensions)
$insts = array_merge([$this] (array) $this->getExtensionInstances());
$insts = array_merge([$this], (array) $this->getExtensionInstances());
foreach ($insts as $inst) {
if (!method_exists($inst, $action)) {
continue;