public function __construct()

in src/TypedFunctionWrapper.php [43:50]


    public function __construct(callable $function)
    {
        parent::__construct($function);

        $this->validateFunctionSignature(
            $this->getFunctionReflection($function)
        );
    }