aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Michael Bausor <michaelbausor@google.com>2017-08-16 12:23:01 -0700
committerGravatar Michael Bausor <michaelbausor@google.com>2017-08-16 12:23:01 -0700
commitff1e9264219303c8b587a2c6bbcf3ef1d3588f16 (patch)
tree46e6e02db48ade3a2d393e481b75916516b888a4
parent8a61db3c378483abebb2866add226c93fcd32c89 (diff)
Remove assignment
-rw-r--r--src/php/lib/Grpc/UnaryCall.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/lib/Grpc/UnaryCall.php b/src/php/lib/Grpc/UnaryCall.php
index 5f30c14b54..e8496492b8 100644
--- a/src/php/lib/Grpc/UnaryCall.php
+++ b/src/php/lib/Grpc/UnaryCall.php
@@ -40,7 +40,7 @@ class UnaryCall extends AbstractCall
if (isset($options['flags'])) {
$message_array['flags'] = $options['flags'];
}
- $event = $this->call->startBatch([
+ $this->call->startBatch([
OP_SEND_INITIAL_METADATA => $metadata,
OP_SEND_MESSAGE => $message_array,
OP_SEND_CLOSE_FROM_CLIENT => true,