Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ConstantScalarTypeTrait.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Traits; use PHPStan\TrinaryLogic; use PHPStan\Type\CompoundType; use PHPStan\Type\CompoundTypeHelper; use PHPStan\Type\Type; trait ConstantScalarTypeTrait { public function accepts(Type $type, bool $strictTypes): TrinaryLogic { if ($type instanceof self) { return TrinaryLogic::createFromBoolean($this->value === $type->value); } if ($type instanceof CompoundType) { return CompoundTypeHelper::accepts($type, $this, $strictTypes); } return TrinaryLogic::createNo(); } public function isSuperTypeOf(Type $type): TrinaryLogic { if ($type instanceof self) { return $this->value === $type->value ? TrinaryLogic::createYes() : TrinaryLogic::createNo(); } if ($type instanceof parent) { return TrinaryLogic::createMaybe(); } if ($type instanceof CompoundType) { return $type->isSubTypeOf($this); } return TrinaryLogic::createNo(); } public function equals(Type $type): bool { return $type instanceof self && $this->value === $type->value; } public function generalize(): Type { return new parent(); } }