Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ScopeFactory.php
<?php declare(strict_types = 1); namespace PHPStan\Analyser; use PhpParser\Node\Expr; use PHPStan\Broker\Broker; use PHPStan\DependencyInjection\Container; use PHPStan\Rules\Properties\PropertyReflectionFinder; use PHPStan\Type\Type; class ScopeFactory { /** @var string */ private $scopeClass; /** @var \PHPStan\Broker\Broker */ private $broker; /** @var \PhpParser\PrettyPrinter\Standard */ private $printer; /** @var \PHPStan\Analyser\TypeSpecifier */ private $typeSpecifier; /** @var \PHPStan\Rules\Properties\PropertyReflectionFinder */ private $propertyReflectionFinder; /** @var string[] */ private $dynamicConstantNames; public function __construct( string $scopeClass, Broker $broker, \PhpParser\PrettyPrinter\Standard $printer, TypeSpecifier $typeSpecifier, PropertyReflectionFinder $propertyReflectionFinder, Container $container ) { $this->scopeClass = $scopeClass; $this->broker = $broker; $this->printer = $printer; $this->typeSpecifier = $typeSpecifier; $this->propertyReflectionFinder = $propertyReflectionFinder; $this->dynamicConstantNames = $container->getParameter('dynamicConstantNames'); } /** * @param \PHPStan\Analyser\ScopeContext $context * @param bool $declareStrictTypes * @param \PHPStan\Reflection\FunctionReflection|\PHPStan\Reflection\MethodReflection|null $function * @param string|null $namespace * @param \PHPStan\Analyser\VariableTypeHolder[] $variablesTypes * @param \PHPStan\Analyser\VariableTypeHolder[] $moreSpecificTypes * @param string|null $inClosureBindScopeClass * @param \PHPStan\Type\Type|null $inAnonymousFunctionReturnType * @param \PhpParser\Node\Expr\FuncCall|\PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|null $inFunctionCall * @param bool $negated * @param bool $inFirstLevelStatement * @param array<string, true> $currentlyAssignedExpressions * * @return Scope */ public function create( ScopeContext $context, bool $declareStrictTypes = false, $function = null, ?string $namespace = null, array $variablesTypes = [], array $moreSpecificTypes = [], ?string $inClosureBindScopeClass = null, ?Type $inAnonymousFunctionReturnType = null, ?Expr $inFunctionCall = null, bool $negated = false, bool $inFirstLevelStatement = true, array $currentlyAssignedExpressions = [] ): Scope { $scopeClass = $this->scopeClass; if (!is_a($scopeClass, Scope::class, true)) { throw new \PHPStan\ShouldNotHappenException(); } return new $scopeClass( $this, $this->broker, $this->printer, $this->typeSpecifier, $this->propertyReflectionFinder, $context, $declareStrictTypes, $function, $namespace, $variablesTypes, $moreSpecificTypes, $inClosureBindScopeClass, $inAnonymousFunctionReturnType, $inFunctionCall, $negated, $inFirstLevelStatement, $currentlyAssignedExpressions, $this->dynamicConstantNames ); } }