public function __construct()

in src/CloudEventFunctionWrapper.php [53:61]


    public function __construct(callable $function, bool $marshalToCloudEventInterface = false)
    {
        $this->marshalToCloudEventInterface = $marshalToCloudEventInterface;
        parent::__construct($function);

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