Beispiel #1
0
 /**
  * @return Nette\Reflection\MethodReflection
  */
 public function getMethod($name)
 {
     return MethodReflection::import(parent::getMethod($name));
 }
Beispiel #2
0
 /**
  * @return Nette\Reflection\MethodReflection
  */
 public function getConstructor()
 {
     return ($ref = parent::getConstructor()) ? MethodReflection::import($ref) : NULL;
 }
 /**
  * @return Nette\Reflection\MethodReflection | Nette\Reflection\FunctionReflection
  */
 public function getDeclaringFunction()
 {
     return ($ref = parent::getDeclaringFunction()) instanceof \ReflectionMethod ? MethodReflection::import($ref) : FunctionReflection::import($ref);
 }