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

Breadcrumb

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

function GetDeprecatedServiceRule::processNode

File

vendor/mglaman/phpstan-drupal/src/Rules/Deprecations/GetDeprecatedServiceRule.php, line 32

Class

GetDeprecatedServiceRule
@implements Rule<Node\Expr\MethodCall>

Namespace

mglaman\PHPStanDrupal\Rules\Deprecations

Code

public function processNode(Node $node, Scope $scope) : array {
    if (!$node->name instanceof Node\Identifier) {
        return [];
    }
    $method_name = $node->name
        ->toString();
    if ($method_name !== 'get') {
        return [];
    }
    $methodReflection = $scope->getMethodReflection($scope->getType($node->var), $node->name
        ->toString());
    if ($methodReflection === null) {
        return [];
    }
    $declaringClass = $methodReflection->getDeclaringClass();
    if ($declaringClass->getName() !== 'Symfony\\Component\\DependencyInjection\\ContainerInterface') {
        return [];
    }
    $serviceNameArg = $node->args[0];
    assert($serviceNameArg instanceof Node\Arg);
    $serviceName = $serviceNameArg->value;
    // @todo check if var, otherwise throw.
    // ACTUALLY what if it was a constant? can we use a resolver.
    if (!$serviceName instanceof Node\Scalar\String_) {
        return [];
    }
    $service = $this->serviceMap
        ->getService($serviceName->value);
    if ($service instanceof DrupalServiceDefinition && $service->isDeprecated()) {
        return [
            $service->getDeprecatedDescription(),
        ];
    }
    return [];
}

API Navigation

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