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