diff options
author | 2016-08-23 23:20:34 +0700 | |
---|---|---|
committer | 2016-08-23 23:20:34 +0700 | |
commit | d58199b1d0e0d5d9e8ea55bbef18e175018f618d (patch) | |
tree | 4804865e9c1d845cdda1dff307809355e94d184d /src/php/lib/Grpc/UnaryCall.php | |
parent | 0e43d67602096a5c4aeab4632579bc56cf692553 (diff) |
code style
phpdoc fix
isset to array_key_exists
Diffstat (limited to 'src/php/lib/Grpc/UnaryCall.php')
-rw-r--r-- | src/php/lib/Grpc/UnaryCall.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/php/lib/Grpc/UnaryCall.php b/src/php/lib/Grpc/UnaryCall.php index a71b05dc93..487b89ebc1 100644 --- a/src/php/lib/Grpc/UnaryCall.php +++ b/src/php/lib/Grpc/UnaryCall.php @@ -43,7 +43,7 @@ class UnaryCall extends AbstractCall /** * Start the call. * - * @param $data The data to send + * @param mixed $data The data to send * @param array $metadata Metadata to send with the call, if applicable * @param array $options an array of options, possible keys: * 'flags' => a number @@ -66,7 +66,7 @@ class UnaryCall extends AbstractCall /** * Wait for the server to respond with data and a status. * - * @return [response data, status] + * @return array [response data, status] */ public function wait() { |