Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: VoidType.php
<?php declare(strict_types = 1); namespace PHPStan\Type; use PHPStan\TrinaryLogic; use PHPStan\Type\Traits\FalseyBooleanTypeTrait; use PHPStan\Type\Traits\NonCallableTypeTrait; use PHPStan\Type\Traits\NonGenericTypeTrait; use PHPStan\Type\Traits\NonIterableTypeTrait; use PHPStan\Type\Traits\NonObjectTypeTrait; use PHPStan\Type\Traits\NonOffsetAccessibleTypeTrait; class VoidType implements Type { use NonCallableTypeTrait; use NonIterableTypeTrait; use NonObjectTypeTrait; use NonOffsetAccessibleTypeTrait; use FalseyBooleanTypeTrait; use NonGenericTypeTrait; /** * @return string[] */ public function getReferencedClasses(): array { return []; } public function accepts(Type $type, bool $strictTypes): TrinaryLogic { return TrinaryLogic::createFromBoolean($type instanceof self); } public function isSuperTypeOf(Type $type): TrinaryLogic { if ($type instanceof self) { return TrinaryLogic::createYes(); } if ($type instanceof CompoundType) { return $type->isSubTypeOf($this); } return TrinaryLogic::createNo(); } public function equals(Type $type): bool { return $type instanceof self; } public function describe(VerbosityLevel $level): string { return 'void'; } public function toNumber(): Type { return new ErrorType(); } public function toString(): Type { return new ErrorType(); } public function toInteger(): Type { return new ErrorType(); } public function toFloat(): Type { return new ErrorType(); } public function toArray(): Type { return new ErrorType(); } public function isArray(): TrinaryLogic { return TrinaryLogic::createNo(); } public function traverse(callable $cb): Type { return $this; } /** * @param mixed[] $properties * @return Type */ public static function __set_state(array $properties): Type { return new self(); } }