コード例 #1
0
ファイル: ClassReflection.php プロジェクト: jaroslavlibal/MDW
 /**
  * @return MethodReflection
  */
 public function getConstructor()
 {
     return ($ref = parent::getConstructor()) ? MethodReflection::import($ref) : NULL;
 }
コード例 #2
0
 /**
  * @return MethodReflection | FunctionReflection
  */
 public function getDeclaringFunction()
 {
     return ($ref = parent::getDeclaringFunction()) instanceof ReflectionMethod ? MethodReflection::import($ref) : FunctionReflection::import($ref);
 }
コード例 #3
0
 /**
  * @return MethodReflection
  */
 public function getMethod($name)
 {
     return MethodReflection::import(parent::getMethod($name));
 }