diff options
author | 2017-01-11 19:35:17 -0800 | |
---|---|---|
committer | 2017-01-11 19:36:32 -0800 | |
commit | 122c687d61aac26d228da9bb6ed2a6237be55d93 (patch) | |
tree | f104c8d4ddad7f47549709c1856f4de03b8a5afe /src/php/lib/Grpc/BaseStub.php | |
parent | 1b59bfc52bf37fcbb9ab0a5c828856128f4acdf5 (diff) |
Fix various PHP bugs
Diffstat (limited to 'src/php/lib/Grpc/BaseStub.php')
-rw-r--r-- | src/php/lib/Grpc/BaseStub.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php index aec60af094..a9e77b9396 100644 --- a/src/php/lib/Grpc/BaseStub.php +++ b/src/php/lib/Grpc/BaseStub.php @@ -271,7 +271,7 @@ class BaseStub * @return ClientStreamingSurfaceActiveCall The active call object */ public function _clientStreamRequest($method, - callable $deserialize, + $deserialize, array $metadata = [], array $options = []) { @@ -307,7 +307,7 @@ class BaseStub */ public function _serverStreamRequest($method, $argument, - callable $deserialize, + $deserialize, array $metadata = [], array $options = []) { @@ -340,7 +340,7 @@ class BaseStub * @return BidiStreamingSurfaceActiveCall The active call object */ public function _bidiRequest($method, - callable $deserialize, + $deserialize, array $metadata = [], array $options = []) { |