Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: TrivialParametersAcceptor.php
<?php declare(strict_types = 1); namespace PHPStan\Reflection; use PHPStan\Type\MixedType; use PHPStan\Type\Type; class TrivialParametersAcceptor implements ParametersAcceptor { /** * @return array<int, \PHPStan\Reflection\ParameterReflection> */ public function getParameters(): array { return []; } public function isVariadic(): bool { return true; } public function getReturnType(): Type { return new MixedType(); } }