aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib
diff options
context:
space:
mode:
authorGravatar thinkerou <thinkerou@gmail.com>2017-01-20 14:43:19 +0800
committerGravatar thinkerou <thinkerou@gmail.com>2017-01-20 14:43:19 +0800
commit16713db01219d54fe71ea2cc4e07a87f401a7b64 (patch)
tree58d56167faa88675c29ae8c32105cde8724fd212 /src/php/lib
parent659e563e2eb03ff01681995e465597e8493abcf3 (diff)
fix code style
Diffstat (limited to 'src/php/lib')
-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'])
) {