rector/packages/NodeNestingScope/ParentFinder.php
Tomas Votruba a41d82e567 Updated Rector to commit 40bd8926d38e7b1c057b3d52b811e8daa74c31a4
40bd8926d3 [Php80][Naming] Handle ClassPropertyAssignToConstructorPromotionRector + RenamePropertyToMatchTypeRector (#861)
2021-09-10 08:55:02 +00:00

36 lines
1.1 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\NodeNestingScope;
use PhpParser\Node;
use Rector\NodeTypeResolver\Node\AttributeKey;
use RectorPrefix20210910\Webmozart\Assert\Assert;
final class ParentFinder
{
/**
* @template T of \PhpParser\Node
* @param array<class-string<T>> $types
* @return T|null
*/
public function findByTypes(\PhpParser\Node $node, array $types) : ?\PhpParser\Node
{
\RectorPrefix20210910\Webmozart\Assert\Assert::allIsAOf($types, \PhpParser\Node::class);
$parent = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE);
if (!$parent instanceof \PhpParser\Node) {
return null;
}
do {
foreach ($types as $type) {
if (\is_a($parent, $type, \true)) {
return $parent;
}
}
if ($parent === null) {
return null;
}
} while ($parent = $parent->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE));
return null;
}
}