opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
FamilyTree
/
NodeAnalyzer
➕ New
📤 Upload
✎ Editing:
ClassChildAnalyzer.php
← Back
<?php declare (strict_types=1); namespace Rector\FamilyTree\NodeAnalyzer; use PHPStan\Reflection\ClassReflection; use PHPStan\Reflection\ParametersAcceptorSelector; use PHPStan\Reflection\Php\PhpMethodReflection; use PHPStan\Type\MixedType; use PHPStan\Type\Type; final class ClassChildAnalyzer { public function hasParentClassMethod(ClassReflection $classReflection, string $methodName) : bool { return $this->resolveParentClassMethods($classReflection, $methodName) !== []; } /** * Look both parent class and interface, yes, all PHP interface methods are abstract */ public function hasAbstractParentClassMethod(ClassReflection $classReflection, string $methodName) : bool { $parentClassMethods = $this->resolveParentClassMethods($classReflection, $methodName); if ($parentClassMethods === []) { return \false; } foreach ($parentClassMethods as $parentClassMethod) { if ($parentClassMethod->isAbstract()) { return \true; } } return \false; } /** * @api downgrade */ public function resolveParentClassMethodReturnType(ClassReflection $classReflection, string $methodName) : Type { $parentClassMethods = $this->resolveParentClassMethods($classReflection, $methodName); if ($parentClassMethods === []) { return new MixedType(); } foreach ($parentClassMethods as $parentClassMethod) { $parametersAcceptor = ParametersAcceptorSelector::combineAcceptors($parentClassMethod->getVariants()); $nativeReturnType = $parametersAcceptor->getNativeReturnType(); if (!$nativeReturnType instanceof MixedType) { return $nativeReturnType; } } return new MixedType(); } /** * @return PhpMethodReflection[] */ private function resolveParentClassMethods(ClassReflection $classReflection, string $methodName) : array { if ($classReflection->hasNativeMethod($methodName) && $classReflection->getNativeMethod($methodName)->isPrivate()) { return []; } $parentClassMethods = []; $parents = \array_merge($classReflection->getParents(), $classReflection->getInterfaces()); foreach ($parents as $parent) { if (!$parent->hasNativeMethod($methodName)) { continue; } $methodReflection = $parent->getNativeMethod($methodName); if (!$methodReflection instanceof PhpMethodReflection) { continue; } $methodDeclaringMethodClass = $methodReflection->getDeclaringClass(); if ($methodDeclaringMethodClass->getName() === $parent->getName()) { $parentClassMethods[] = $methodReflection; } } return $parentClassMethods; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel