diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-01-27 14:31:30 -0800 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-01-27 14:31:30 -0800 |
commit | cc2971b9f73a2c9400009975c51d8c436983d320 (patch) | |
tree | d9e8c1134186286666baf8e00f9b4eed93e625bd /src/php/lib/Grpc/ClientStreamingCall.php | |
parent | 9930e4b39486b3eb62609c67b87d7bc80f63e50d (diff) | |
parent | 46357c882df1afc28f7a5228c40fde522093fa32 (diff) |
Merge branch 'master' into pollset_set_test
Diffstat (limited to 'src/php/lib/Grpc/ClientStreamingCall.php')
-rw-r--r-- | src/php/lib/Grpc/ClientStreamingCall.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/php/lib/Grpc/ClientStreamingCall.php b/src/php/lib/Grpc/ClientStreamingCall.php index c542f08872..6454cbcb21 100644 --- a/src/php/lib/Grpc/ClientStreamingCall.php +++ b/src/php/lib/Grpc/ClientStreamingCall.php @@ -63,7 +63,7 @@ class ClientStreamingCall extends AbstractCall */ public function write($data, array $options = []) { - $message_array = ['message' => $this->serializeMessage($data)]; + $message_array = ['message' => $this->_serializeMessage($data)]; if (array_key_exists('flags', $options)) { $message_array['flags'] = $options['flags']; } @@ -90,6 +90,6 @@ class ClientStreamingCall extends AbstractCall $status = $event->status; $this->trailing_metadata = $status->metadata; - return [$this->deserializeResponse($event->message), $status]; + return [$this->_deserializeResponse($event->message), $status]; } } |