[2.0][DDC-71] Fixing call to incorrect method name
This commit is contained in:
parent
1405993e6a
commit
d047f0e25e
@ -189,13 +189,13 @@ class AnnotationExporter extends AbstractExporter
|
|||||||
|
|
||||||
private function _getClassToExtendName()
|
private function _getClassToExtendName()
|
||||||
{
|
{
|
||||||
$refl = new \ReflectionClass($this->getClassToExtend());
|
$refl = new \ReflectionClass($this->_getClassToExtend());
|
||||||
return $refl->getShortName();
|
return $refl->getShortName();
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _getClassToExtendNamespace()
|
private function _getClassToExtendNamespace()
|
||||||
{
|
{
|
||||||
$refl = new \ReflectionClass($this->getClassToExtend());
|
$refl = new \ReflectionClass($this->_getClassToExtend());
|
||||||
return $refl->getNamespaceName() ? $refl->getNamespaceName():$refl->getShortName();
|
return $refl->getNamespaceName() ? $refl->getNamespaceName():$refl->getShortName();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user