Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: DefineConstantTypeSpecifyingExtension.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Php; use PhpParser\Node\Expr\FuncCall; use PHPStan\Analyser\Scope; use PHPStan\Analyser\SpecifiedTypes; use PHPStan\Analyser\TypeSpecifier; use PHPStan\Analyser\TypeSpecifierAwareExtension; use PHPStan\Analyser\TypeSpecifierContext; use PHPStan\Reflection\FunctionReflection; use PHPStan\Type\Constant\ConstantStringType; use PHPStan\Type\FunctionTypeSpecifyingExtension; class DefineConstantTypeSpecifyingExtension implements FunctionTypeSpecifyingExtension, TypeSpecifierAwareExtension { /** @var TypeSpecifier */ private $typeSpecifier; public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void { $this->typeSpecifier = $typeSpecifier; } public function isFunctionSupported( FunctionReflection $functionReflection, FuncCall $node, TypeSpecifierContext $context ): bool { return $functionReflection->getName() === 'define' && $context->null() && count($node->args) >= 2; } public function specifyTypes( FunctionReflection $functionReflection, FuncCall $node, Scope $scope, TypeSpecifierContext $context ): SpecifiedTypes { $constantName = $scope->getType($node->args[0]->value); if ( !$constantName instanceof ConstantStringType || $constantName->getValue() === '' ) { return new SpecifiedTypes([], []); } return $this->typeSpecifier->create( new \PhpParser\Node\Expr\ConstFetch( new \PhpParser\Node\Name\FullyQualified($constantName->getValue()) ), $scope->getType($node->args[1]->value), TypeSpecifierContext::createTruthy() ); } }