本文整理汇总了PHP中Nette\Reflection\ClassType::getParentClass方法的典型用法代码示例。如果您正苦于以下问题:PHP ClassType::getParentClass方法的具体用法?PHP ClassType::getParentClass怎么用?PHP ClassType::getParentClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nette\Reflection\ClassType
的用法示例。
在下文中一共展示了ClassType::getParentClass方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: walkClassHierarchy
private function walkClassHierarchy(ClassType $classType, &$expressions)
{
$parentClass = $classType->getParentClass();
if ($parentClass) {
$this->walkClassHierarchy($parentClass, $expressions);
}
$annotation = $classType->getAnnotation('Security');
if ($annotation) {
if (!is_string($annotation)) {
throw new \InvalidArgumentException('Security annotation must be simple string with expression.');
}
$expressions[] = new Expression($annotation);
}
}
示例2: findEntityWholeName
/**
* Try to find entity class in possible NS
*
* @param class $className
* @param object $entity
* @return null|string
*/
private function findEntityWholeName($className, $entity)
{
$existingClass = NULL;
// try to locate class in this namespace
if (!class_exists($className)) {
// try to find in namespace of entity
$reflection = new ClassType($entity);
$existingClass = $reflection->getNamespaceName() . "\\" . $className;
// try to locate in parents namespace (recursive)
if (!class_exists($existingClass)) {
$parentClass = $reflection->getParentClass();
while ($parentClass !== NULL) {
$existingClass = $reflection->getParentClass()->getNamespaceName() . "\\" . $className;
// not found try to find in parent namespace
if (!class_exists($existingClass)) {
$rc = new ClassType($parentClass);
$parentClass = $rc->getParentClass();
$existingClass = NULL;
} else {
$parentClass = NULL;
}
}
}
} else {
$existingClass = $className;
}
return $existingClass;
}