Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ErrorType.php
<?php declare(strict_types = 1); namespace PHPStan\Type; class ErrorType extends MixedType { public function getIterableKeyType(): Type { return new ErrorType(); } public function getIterableValueType(): Type { return new ErrorType(); } public function subtract(Type $type): Type { return new self(); } /** * @param mixed[] $properties * @return Type */ public static function __set_state(array $properties): Type { return new self(); } }