Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: NonObjectTypeTrait.php
<?php declare(strict_types = 1); namespace PHPStan\Type\Traits; use PHPStan\Reflection\ClassMemberAccessAnswerer; use PHPStan\Reflection\ConstantReflection; use PHPStan\Reflection\MethodReflection; use PHPStan\Reflection\PropertyReflection; use PHPStan\TrinaryLogic; trait NonObjectTypeTrait { public function canAccessProperties(): TrinaryLogic { return TrinaryLogic::createNo(); } public function hasProperty(string $propertyName): TrinaryLogic { return TrinaryLogic::createNo(); } public function getProperty(string $propertyName, ClassMemberAccessAnswerer $scope): PropertyReflection { throw new \PHPStan\ShouldNotHappenException(); } public function canCallMethods(): TrinaryLogic { return TrinaryLogic::createNo(); } public function hasMethod(string $methodName): TrinaryLogic { return TrinaryLogic::createNo(); } public function getMethod(string $methodName, ClassMemberAccessAnswerer $scope): MethodReflection { throw new \PHPStan\ShouldNotHappenException(); } public function canAccessConstants(): TrinaryLogic { return TrinaryLogic::createNo(); } public function hasConstant(string $constantName): TrinaryLogic { return TrinaryLogic::createNo(); } public function getConstant(string $constantName): ConstantReflection { throw new \PHPStan\ShouldNotHappenException(); } public function isCloneable(): TrinaryLogic { return TrinaryLogic::createNo(); } }