class MockUnaryCall extends UnaryCall

The MockUnaryCall class is used to mock out the \Grpc\UnaryCall class (https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

The MockUnaryCall object is constructed with a response object, an optional deserialize method, and an optional status. The response object and status are returned immediately from the wait() method.

Traits

Methods

deserializeMessage($message, $deserialize)

No description

__construct(Message $response, callable|null $deserialize = null, MockStatus|null $status = null)

MockUnaryCall constructor.

array
wait()

Immediately return the preset response object and status.

Details

in SerializationTrait at line 36
protected deserializeMessage($message, $deserialize)

Parameters

$message
$deserialize

at line 58
__construct(Message $response, callable|null $deserialize = null, MockStatus|null $status = null)

MockUnaryCall constructor.

Parameters

Message $response The response object.
callable|null $deserialize An optional deserialize method for the response object.
MockStatus|null $status An optional status object. If set to null, a status of OK is used.

at line 72
array wait()

Immediately return the preset response object and status.

Return Value

array The response object and status.