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

Breadcrumb

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

class MockMethodCallRule

@implements Rule<MethodCall>

Hierarchy

  • class \PHPStan\Rules\PHPUnit\MockMethodCallRule implements \PHPStan\Rules\Rule

Expanded class hierarchy of MockMethodCallRule

File

vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/MockMethodCallRule.php, line 22

Namespace

PHPStan\Rules\PHPUnit
View source
class MockMethodCallRule implements Rule {
    public function getNodeType() : string {
        return Node\Expr\MethodCall::class;
    }
    public function processNode(Node $node, Scope $scope) : array {
        if (!$node->name instanceof Node\Identifier || $node->name->name !== 'method') {
            return [];
        }
        if (count($node->getArgs()) < 1) {
            return [];
        }
        $argType = $scope->getType($node->getArgs()[0]->value);
        if (count($argType->getConstantStrings()) === 0) {
            return [];
        }
        $errors = [];
        foreach ($argType->getConstantStrings() as $constantString) {
            $method = $constantString->getValue();
            $type = $scope->getType($node->var);
            if ((in_array(MockObject::class, $type->getObjectClassNames(), true) || in_array(Stub::class, $type->getObjectClassNames(), true)) && !$type->hasMethod($method)
                ->yes()) {
                $mockClasses = array_filter($type->getObjectClassNames(), static function (string $class) : bool {
                    return $class !== MockObject::class && $class !== Stub::class;
                });
                if (count($mockClasses) === 0) {
                    continue;
                }
                $errors[] = RuleErrorBuilder::message(sprintf('Trying to mock an undefined method %s() on class %s.', $method, implode('&', $mockClasses)))->identifier('phpunit.mockMethod')
                    ->build();
                continue;
            }
            $mockedClassObject = $type->getTemplateType(InvocationMocker::class, 'TMockedClass');
            if ($mockedClassObject->hasMethod($method)
                ->yes()) {
                continue;
            }
            $classNames = $mockedClassObject->getObjectClassNames();
            if (count($classNames) === 0) {
                continue;
            }
            $errors[] = RuleErrorBuilder::message(sprintf('Trying to mock an undefined method %s() on class %s.', $method, implode('|', $classNames)))->identifier('phpunit.mockMethod')
                ->build();
        }
        return $errors;
    }

}

Members

Title Sort descending Modifiers Object type Summary
MockMethodCallRule::getNodeType public function
MockMethodCallRule::processNode public function
RSS feed
Powered by Drupal