Commit d047f0e2 authored by jwage's avatar jwage

[2.0][DDC-71] Fixing call to incorrect method name

parent 1405993e
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment