Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ObjectTypeTrait.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Traits; use PHPStan\Reflection\ClassMemberAccessAnswerer; use PHPStan\Reflection\ConstantReflection; use PHPStan\Reflection\Dummy\DummyConstantReflection; use PHPStan\Reflection\Dummy\DummyMethodReflection; use PHPStan\Reflection\Dummy\DummyPropertyReflection; use PHPStan\Reflection\MethodReflection; use PHPStan\Reflection\PropertyReflection; use PHPStan\TrinaryLogic; use PHPStan\Type\ArrayType; use PHPStan\Type\ErrorType; use PHPStan\Type\MixedType; use PHPStan\Type\StringType; use PHPStan\Type\Type; trait ObjectTypeTrait { use MaybeCallableTypeTrait; use MaybeIterableTypeTrait; use MaybeOffsetAccessibleTypeTrait; use TruthyBooleanTypeTrait; public function canAccessProperties(): TrinaryLogic { return TrinaryLogic::createYes(); } public function hasProperty(string $propertyName): TrinaryLogic { return TrinaryLogic::createMaybe(); } public function getProperty(string $propertyName, ClassMemberAccessAnswerer $scope): PropertyReflection { return new DummyPropertyReflection(); } public function canCallMethods(): TrinaryLogic { return TrinaryLogic::createYes(); } public function hasMethod(string $methodName): TrinaryLogic { return TrinaryLogic::createMaybe(); } public function getMethod(string $methodName, ClassMemberAccessAnswerer $scope): MethodReflection { return new DummyMethodReflection($methodName); } public function canAccessConstants(): TrinaryLogic { return TrinaryLogic::createYes(); } public function hasConstant(string $constantName): TrinaryLogic { return TrinaryLogic::createMaybe(); } public function getConstant(string $constantName): ConstantReflection { return new DummyConstantReflection($constantName); } public function isCloneable(): TrinaryLogic { return TrinaryLogic::createYes(); } public function isArray(): TrinaryLogic { return TrinaryLogic::createNo(); } public function toNumber(): Type { return new ErrorType(); } public function toString(): Type { return new StringType(); } public function toInteger(): Type { return new ErrorType(); } public function toFloat(): Type { return new ErrorType(); } public function toArray(): Type { return new ArrayType(new MixedType(), new MixedType()); } }