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

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

View File

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