aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanley.cheung@gmail.com>2017-01-26 19:23:55 -0800
committerGravatar GitHub <noreply@github.com>2017-01-26 19:23:55 -0800
commit8914ce0872f8dc743aba43533247e3460e7cded8 (patch)
tree0bbb6dd8f2a8718e70c6c284498c87b05adde5dd
parentfa3b130b8188ddac25000c5d7200203152605208 (diff)
parent16713db01219d54fe71ea2cc4e07a87f401a7b64 (diff)
Merge pull request #9415 from thinkerou/fix_php_lib_code_style
PHP: fix code style
-rw-r--r--src/php/lib/Grpc/AbstractCall.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/php/lib/Grpc/AbstractCall.php b/src/php/lib/Grpc/AbstractCall.php
index 9f0b02b8bb..1d51a8e66c 100644
--- a/src/php/lib/Grpc/AbstractCall.php
+++ b/src/php/lib/Grpc/AbstractCall.php
@@ -58,12 +58,11 @@ abstract class AbstractCall
* the response
* @param array $options Call options (optional)
*/
- public function __construct(
- Channel $channel,
- $method,
- $deserialize,
- array $options = []
- ) {
+ public function __construct(Channel $channel,
+ $method,
+ $deserialize,
+ array $options = [])
+ {
if (array_key_exists('timeout', $options) &&
is_numeric($timeout = $options['timeout'])
) {