This commit is contained in:
Julio Cesar Laura Avendaño
2018-02-16 11:21:21 -04:00
parent 51957b02fc
commit 38c087ab2e
2 changed files with 8 additions and 10 deletions

View File

@@ -1261,11 +1261,10 @@ class PluginRegistry
if (empty($this->_restExtendServices[$Namespace])) {
$this->_restExtendServices[$Namespace] = new stdClass();
}
$this->_restExtendServices[$Namespace]->{$ClassName} = [
'filePath' => $classFile,
'classParent' => $ClassName,
'classExtend' => 'Ext' . $ClassName
];
$this->_restExtendServices[$Namespace]->{$ClassName} = new stdClass();
$this->_restExtendServices[$Namespace]->{$ClassName}->filePath = $classFile;
$this->_restExtendServices[$Namespace]->{$ClassName}->classParent = $ClassName;
$this->_restExtendServices[$Namespace]->{$ClassName}->classExtend = 'Ext' . $ClassName;
}
}