Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Psalm\Internal\Provider\ReturnTypeProvider; use Psalm\Internal\Analyzer\..

Decoded Output download

<?php

namespace Psalm\Internal\Provider\ReturnTypeProvider;

use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\Internal\Type\Comparator\UnionTypeComparator;
use Psalm\Plugin\EventHandler\Event\FunctionReturnTypeProviderEvent;
use Psalm\Plugin\EventHandler\FunctionReturnTypeProviderInterface;
use Psalm\Type;
use Psalm\Type\Atomic\TBool;
use Psalm\Type\Atomic\TLiteralInt;
use Psalm\Type\Atomic\TNull;
use Psalm\Type\Union;

use function count;

/**
 * @internal
 */
final class VersionCompareReturnTypeProvider implements FunctionReturnTypeProviderInterface
{
    /**
     * @return array<lowercase-string>
     */
    public static function getFunctionIds(): array
    {
        return ['version_compare'];
    }

    public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $event): Union
    {
        $statements_source = $event->getStatementsSource();
        $call_args = $event->getCallArgs();
        if (!$statements_source instanceof StatementsAnalyzer) {
            return Type::getMixed();
        }

        if (count($call_args) > 2) {
            $operator_type = $statements_source->node_data->getType($call_args[2]->value);

            if ($operator_type) {
                if (!$operator_type->hasMixed()) {
                    $acceptable_operator_type = new Union([
                        Type::getAtomicStringFromLiteral('<'),
                        Type::getAtomicStringFromLiteral('lt'),
                        Type::getAtomicStringFromLiteral('<='),
                        Type::getAtomicStringFromLiteral('le'),
                        Type::getAtomicStringFromLiteral('>'),
                        Type::getAtomicStringFromLiteral('gt'),
                        Type::getAtomicStringFromLiteral('>='),
                        Type::getAtomicStringFromLiteral('ge'),
                        Type::getAtomicStringFromLiteral('=='),
                        Type::getAtomicStringFromLiteral('='),
                        Type::getAtomicStringFromLiteral('eq'),
                        Type::getAtomicStringFromLiteral('!='),
                        Type::getAtomicStringFromLiteral('<>'),
                        Type::getAtomicStringFromLiteral('ne'),
                    ]);

                    $codebase = $statements_source->getCodebase();

                    if (UnionTypeComparator::isContainedBy(
                        $codebase,
                        $operator_type,
                        $acceptable_operator_type,
                    )) {
                        return Type::getBool();
                    }
                }
            }

            return new Union([
                new TBool,
                new TNull,
            ]);
        }

        return new Union([
            new TLiteralInt(-1),
            new TLiteralInt(0),
            new TLiteralInt(1),
        ]);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Psalm\Internal\Provider\ReturnTypeProvider;

use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\Internal\Type\Comparator\UnionTypeComparator;
use Psalm\Plugin\EventHandler\Event\FunctionReturnTypeProviderEvent;
use Psalm\Plugin\EventHandler\FunctionReturnTypeProviderInterface;
use Psalm\Type;
use Psalm\Type\Atomic\TBool;
use Psalm\Type\Atomic\TLiteralInt;
use Psalm\Type\Atomic\TNull;
use Psalm\Type\Union;

use function count;

/**
 * @internal
 */
final class VersionCompareReturnTypeProvider implements FunctionReturnTypeProviderInterface
{
    /**
     * @return array<lowercase-string>
     */
    public static function getFunctionIds(): array
    {
        return ['version_compare'];
    }

    public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $event): Union
    {
        $statements_source = $event->getStatementsSource();
        $call_args = $event->getCallArgs();
        if (!$statements_source instanceof StatementsAnalyzer) {
            return Type::getMixed();
        }

        if (count($call_args) > 2) {
            $operator_type = $statements_source->node_data->getType($call_args[2]->value);

            if ($operator_type) {
                if (!$operator_type->hasMixed()) {
                    $acceptable_operator_type = new Union([
                        Type::getAtomicStringFromLiteral('<'),
                        Type::getAtomicStringFromLiteral('lt'),
                        Type::getAtomicStringFromLiteral('<='),
                        Type::getAtomicStringFromLiteral('le'),
                        Type::getAtomicStringFromLiteral('>'),
                        Type::getAtomicStringFromLiteral('gt'),
                        Type::getAtomicStringFromLiteral('>='),
                        Type::getAtomicStringFromLiteral('ge'),
                        Type::getAtomicStringFromLiteral('=='),
                        Type::getAtomicStringFromLiteral('='),
                        Type::getAtomicStringFromLiteral('eq'),
                        Type::getAtomicStringFromLiteral('!='),
                        Type::getAtomicStringFromLiteral('<>'),
                        Type::getAtomicStringFromLiteral('ne'),
                    ]);

                    $codebase = $statements_source->getCodebase();

                    if (UnionTypeComparator::isContainedBy(
                        $codebase,
                        $operator_type,
                        $acceptable_operator_type,
                    )) {
                        return Type::getBool();
                    }
                }
            }

            return new Union([
                new TBool,
                new TNull,
            ]);
        }

        return new Union([
            new TLiteralInt(-1),
            new TLiteralInt(0),
            new TLiteralInt(1),
        ]);
    }
}

Function Calls

None

Variables

None

Stats

MD5 33a14d8fd41bc7861ef1d1609e209520
Eval Count 0
Decode Time 96 ms