Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: MaybeOffsetAccessibleTypeTrait.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Traits; use PHPStan\TrinaryLogic; use PHPStan\Type\MixedType; use PHPStan\Type\Type; trait MaybeOffsetAccessibleTypeTrait { public function isOffsetAccessible(): TrinaryLogic { return TrinaryLogic::createMaybe(); } public function hasOffsetValueType(Type $offsetType): TrinaryLogic { return TrinaryLogic::createMaybe(); } public function getOffsetValueType(Type $offsetType): Type { return new MixedType(); } public function setOffsetValueType(?Type $offsetType, Type $valueType): Type { return $this; } }