3 declare(strict_types=1);
5 namespace CuyZ\Valinor\Mapper\Tree\Exception;
7 use CuyZ\Valinor\Definition\FunctionDefinition;
11 final class MissingObjectImplementationRegistration extends RuntimeException
13 public function __construct(string $name, FunctionDefinition $functionDefinition)
16 "No implementation of `$name` found with return type `{$functionDefinition->returnType()->toString()}` of `{$functionDefinition->signature()}`.",