PHP 8.2.31
Preview: CompactFuncCallAnalyzer.php Size: 2.06 KB
//opt/cpanel/ea-wappspector/vendor/rector/rector/src/NodeAnalyzer/CompactFuncCallAnalyzer.php

<?php

declare (strict_types=1);
namespace Rector\NodeAnalyzer;

use PhpParser\Node\Arg;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\ArrayItem;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\VariadicPlaceholder;
use Rector\NodeNameResolver\NodeNameResolver;
final class CompactFuncCallAnalyzer
{
    /**
     * @readonly
     * @var \Rector\NodeNameResolver\NodeNameResolver
     */
    private $nodeNameResolver;
    public function __construct(NodeNameResolver $nodeNameResolver)
    {
        $this->nodeNameResolver = $nodeNameResolver;
    }
    public function isInCompact(FuncCall $funcCall, Variable $variable) : bool
    {
        if (!$this->nodeNameResolver->isName($funcCall, 'compact')) {
            return \false;
        }
        if (!\is_string($variable->name)) {
            return \false;
        }
        return $this->isInArgOrArrayItemNodes($funcCall->args, $variable->name);
    }
    /**
     * @param array<int, Arg|VariadicPlaceholder|ArrayItem|null> $nodes
     */
    private function isInArgOrArrayItemNodes(array $nodes, string $variableName) : bool
    {
        foreach ($nodes as $node) {
            if ($this->shouldSkip($node)) {
                continue;
            }
            /** @var Arg|ArrayItem $node */
            if ($node->value instanceof Array_) {
                if ($this->isInArgOrArrayItemNodes($node->value->items, $variableName)) {
                    return \true;
                }
                continue;
            }
            if (!$node->value instanceof String_) {
                continue;
            }
            if ($node->value->value === $variableName) {
                return \true;
            }
        }
        return \false;
    }
    /**
     * @param \PhpParser\Node\Arg|\PhpParser\Node\VariadicPlaceholder|\PhpParser\Node\Expr\ArrayItem|null $node
     */
    private function shouldSkip($node) : bool
    {
        if ($node === null) {
            return \true;
        }
        return $node instanceof VariadicPlaceholder;
    }
}

Directory Contents

Dirs: 0 × Files: 17

Name Size Perms Modified Actions
418 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.14 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
2.37 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
463 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
2.06 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.02 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.99 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
3.62 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
717 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
5.39 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.66 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
7.38 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
5.91 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
683 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
5.25 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
603 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.51 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).