Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ScopeIsInClassTypeSpecifyingExtension.php
<?php declare(strict_types = 1); namespace PHPStan\Internal; use PhpParser\Node\Expr\MethodCall; use PHPStan\Analyser\Scope; use PHPStan\Analyser\SpecifiedTypes; use PHPStan\Analyser\TypeSpecifier; use PHPStan\Analyser\TypeSpecifierAwareExtension; use PHPStan\Analyser\TypeSpecifierContext; use PHPStan\Broker\Broker; use PHPStan\Reflection\ClassMemberAccessAnswerer; use PHPStan\Reflection\MethodReflection; use PHPStan\Reflection\ParametersAcceptorSelector; use PHPStan\Type\MethodTypeSpecifyingExtension; use PHPStan\Type\TypeCombinator; class ScopeIsInClassTypeSpecifyingExtension implements MethodTypeSpecifyingExtension, TypeSpecifierAwareExtension { /** @var string */ private $isInMethodName; /** @var string */ private $removeNullMethodName; /** @var \PHPStan\Broker\Broker */ private $broker; /** @var \PHPStan\Analyser\TypeSpecifier */ private $typeSpecifier; public function __construct( string $isInMethodName, string $removeNullMethodName, Broker $broker ) { $this->isInMethodName = $isInMethodName; $this->removeNullMethodName = $removeNullMethodName; $this->broker = $broker; } public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void { $this->typeSpecifier = $typeSpecifier; } public function getClass(): string { return ClassMemberAccessAnswerer::class; } public function isMethodSupported( MethodReflection $methodReflection, MethodCall $node, TypeSpecifierContext $context ): bool { return $methodReflection->getName() === $this->isInMethodName && !$context->null(); } public function specifyTypes( MethodReflection $methodReflection, MethodCall $node, Scope $scope, TypeSpecifierContext $context ): SpecifiedTypes { $scopeClass = $this->broker->getClass(Scope::class); $methodVariants = $scopeClass ->getMethod($this->removeNullMethodName, $scope) ->getVariants(); return $this->typeSpecifier->create( new MethodCall($node->var, $this->removeNullMethodName), TypeCombinator::removeNull( ParametersAcceptorSelector::selectSingle($methodVariants)->getReturnType() ), $context ); } }