Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: BenevolentUnionType.php
<?php declare(strict_types = 1); namespace PHPStan\Type; use PHPStan\TrinaryLogic; class BenevolentUnionType extends UnionType { public function describe(VerbosityLevel $level): string { return '(' . parent::describe($level) . ')'; } protected function unionTypes(callable $getType): Type { $resultTypes = []; foreach ($this->getTypes() as $type) { $result = $getType($type); if ($result instanceof ErrorType) { continue; } $resultTypes[] = $result; } if (count($resultTypes) === 0) { return new ErrorType(); } return TypeCombinator::union(...$resultTypes); } public function isAcceptedBy(Type $acceptingType, bool $strictTypes): TrinaryLogic { foreach ($this->getTypes() as $innerType) { if ($acceptingType->accepts($innerType, $strictTypes)->yes()) { return TrinaryLogic::createYes(); } } return TrinaryLogic::createNo(); } }