PHP 8.2.31
Preview: LiteralCallLikeConstFetchReplacer.php Size: 1.43 KB
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/rector/rector-symfony/src/NodeAnalyzer/LiteralCallLikeConstFetchReplacer.php

<?php

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

use PhpParser\Node\Expr\CallLike;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Scalar\LNumber;
use PhpParser\Node\Scalar\String_;
use Rector\PhpParser\Node\NodeFactory;
final class LiteralCallLikeConstFetchReplacer
{
    /**
     * @readonly
     * @var \Rector\PhpParser\Node\NodeFactory
     */
    private $nodeFactory;
    public function __construct(NodeFactory $nodeFactory)
    {
        $this->nodeFactory = $nodeFactory;
    }
    /**
     * @template TCallLike as MethodCall|New_|StaticCall
     *
     * @param TCallLike $callLike
     * @param array<string|int, string> $constantMap
     * @return TCallLike
     */
    public function replaceArgOnPosition(CallLike $callLike, int $argPosition, string $className, array $constantMap)
    {
        $args = $callLike->getArgs();
        if (!isset($args[$argPosition])) {
            return null;
        }
        $arg = $args[$argPosition];
        if (!$arg->value instanceof String_ && !$arg->value instanceof LNumber) {
            return null;
        }
        $scalar = $arg->value;
        $constantName = $constantMap[$scalar->value] ?? null;
        if ($constantName === null) {
            return null;
        }
        $arg->value = $this->nodeFactory->createClassConstFetch($className, $constantName);
        return $callLike;
    }
}

Directory Contents

Dirs: 2 × Files: 12

Name Size Perms Modified Actions
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
FormType DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
730 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
3.83 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.49 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.21 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
508 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.43 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
5.08 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.52 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
3.12 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
2.62 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.18 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download

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