Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: TemplateTypeArgumentStrategy.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Generic; use PHPStan\TrinaryLogic; use PHPStan\Type\MixedType; use PHPStan\Type\Type; /** * Template type strategy suitable for return type acceptance contexts */ class TemplateTypeArgumentStrategy implements TemplateTypeStrategy { public function accepts(TemplateType $left, Type $right, bool $strictTypes): TrinaryLogic { return TrinaryLogic::createFromBoolean($left->equals($right)) ->or(TrinaryLogic::createFromBoolean($right->equals(new MixedType()))); } public function isArgument(): bool { return true; } /** * @param mixed[] $properties */ public static function __set_state(array $properties): self { return new self(); } }