diff options
author | thinkerou <thinkerou@gmail.com> | 2016-07-20 16:59:54 +0800 |
---|---|---|
committer | thinkerou <thinkerou@gmail.com> | 2016-07-20 17:03:33 +0800 |
commit | a3730b75f8cf086f7eedc2f34ad6d928b69b28d0 (patch) | |
tree | b1667e353e369088e6c41c797596456b9027ee6a /src/php/lib/Grpc/ClientStreamingCall.php | |
parent | f3f5c18e5ad14a35351f672181c51998b589cef3 (diff) |
support php7 by marco
Diffstat (limited to 'src/php/lib/Grpc/ClientStreamingCall.php')
-rw-r--r-- | src/php/lib/Grpc/ClientStreamingCall.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/php/lib/Grpc/ClientStreamingCall.php b/src/php/lib/Grpc/ClientStreamingCall.php index 315a406735..4050f7ed06 100644 --- a/src/php/lib/Grpc/ClientStreamingCall.php +++ b/src/php/lib/Grpc/ClientStreamingCall.php @@ -88,6 +88,7 @@ class ClientStreamingCall extends AbstractCall $status = $event->status; $this->trailing_metadata = $status->metadata; + return [$this->deserializeResponse($event->message), $status]; } } |