Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: NonIterableTypeTrait.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Traits; use PHPStan\TrinaryLogic; use PHPStan\Type\ErrorType; use PHPStan\Type\Type; trait NonIterableTypeTrait { public function isIterable(): TrinaryLogic { return TrinaryLogic::createNo(); } public function isIterableAtLeastOnce(): TrinaryLogic { return TrinaryLogic::createNo(); } public function getIterableKeyType(): Type { return new ErrorType(); } public function getIterableValueType(): Type { return new ErrorType(); } }