Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CallToDeprecatedStaticMethodRule.php

function CallToDeprecatedStaticMethodRule::processNode

File

vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php, line 48

Class

CallToDeprecatedStaticMethodRule
@implements Rule<StaticCall>

Namespace

PHPStan\Rules\Deprecations

Code

public function processNode(Node $node, Scope $scope) : array {
    if ($this->deprecatedScopeHelper
        ->isScopeDeprecated($scope)) {
        return [];
    }
    if (!$node->name instanceof Identifier) {
        return [];
    }
    $methodName = $node->name->name;
    $referencedClasses = [];
    if ($node->class instanceof Name) {
        $referencedClasses[] = $scope->resolveName($node->class);
    }
    else {
        $classTypeResult = $this->ruleLevelHelper
            ->findTypeToCheck($scope, $node->class, '', static function (Type $type) use ($methodName) : bool {
            return $type->canCallMethods()
                ->yes() && $type->hasMethod($methodName)
                ->yes();
        });
        if ($classTypeResult->getType() instanceof ErrorType) {
            return [];
        }
        $referencedClasses = $classTypeResult->getReferencedClasses();
    }
    $errors = [];
    foreach ($referencedClasses as $referencedClass) {
        try {
            $class = $this->reflectionProvider
                ->getClass($referencedClass);
            $methodReflection = $class->getMethod($methodName, $scope);
        } catch (ClassNotFoundException $e) {
            continue;
        } catch (MissingMethodFromReflectionException $e) {
            continue;
        }
        if ($class->isDeprecated()) {
            $classDescription = $class->getDeprecatedDescription();
            if ($classDescription === null) {
                $errors[] = RuleErrorBuilder::message(sprintf('Call to method %s() of deprecated %s %s.', $methodReflection->getName(), strtolower($methodReflection->getDeclaringClass()
                    ->getClassTypeDescription()), $methodReflection->getDeclaringClass()
                    ->getName()))
                    ->identifier(sprintf('staticMethod.deprecated%s', $methodReflection->getDeclaringClass()
                    ->getClassTypeDescription()))
                    ->build();
            }
            else {
                $errors[] = RuleErrorBuilder::message(sprintf("Call to method %s() of deprecated %s %s:\n%s", $methodReflection->getName(), strtolower($methodReflection->getDeclaringClass()
                    ->getClassTypeDescription()), $methodReflection->getDeclaringClass()
                    ->getName(), $classDescription))
                    ->identifier(sprintf('staticMethod.deprecated%s', $methodReflection->getDeclaringClass()
                    ->getClassTypeDescription()))
                    ->build();
            }
        }
        if (!$methodReflection->isDeprecated()
            ->yes()) {
            continue;
        }
        $description = $methodReflection->getDeprecatedDescription();
        if ($description === null) {
            $errors[] = RuleErrorBuilder::message(sprintf('Call to deprecated method %s() of %s %s.', $methodReflection->getName(), strtolower($methodReflection->getDeclaringClass()
                ->getClassTypeDescription()), $methodReflection->getDeclaringClass()
                ->getName()))
                ->identifier('staticMethod.deprecated')
                ->build();
        }
        else {
            $errors[] = RuleErrorBuilder::message(sprintf("Call to deprecated method %s() of %s %s:\n%s", $methodReflection->getName(), strtolower($methodReflection->getDeclaringClass()
                ->getClassTypeDescription()), $methodReflection->getDeclaringClass()
                ->getName(), $description))
                ->identifier('staticMethod.deprecated')
                ->build();
        }
    }
    return $errors;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal