diff options
author | thinkerou <thinkerou@gmail.com> | 2017-01-20 14:43:19 +0800 |
---|---|---|
committer | thinkerou <thinkerou@gmail.com> | 2017-01-20 14:43:19 +0800 |
commit | 16713db01219d54fe71ea2cc4e07a87f401a7b64 (patch) | |
tree | 58d56167faa88675c29ae8c32105cde8724fd212 /src/php | |
parent | 659e563e2eb03ff01681995e465597e8493abcf3 (diff) |
fix code style
Diffstat (limited to 'src/php')
-rw-r--r-- | src/php/lib/Grpc/AbstractCall.php | 11 |
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']) ) { |