[2.0][DDC-71] Fixing call to incorrect method name
This commit is contained in:
parent
1405993e6a
commit
d047f0e25e
1 changed files with 2 additions and 2 deletions
|
@ -189,13 +189,13 @@ class AnnotationExporter extends AbstractExporter
|
|||
|
||||
private function _getClassToExtendName()
|
||||
{
|
||||
$refl = new \ReflectionClass($this->getClassToExtend());
|
||||
$refl = new \ReflectionClass($this->_getClassToExtend());
|
||||
return $refl->getShortName();
|
||||
}
|
||||
|
||||
private function _getClassToExtendNamespace()
|
||||
{
|
||||
$refl = new \ReflectionClass($this->getClassToExtend());
|
||||
$refl = new \ReflectionClass($this->_getClassToExtend());
|
||||
return $refl->getNamespaceName() ? $refl->getNamespaceName():$refl->getShortName();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue