aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib/Grpc/BaseStub.php
diff options
context:
space:
mode:
authorGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-30 13:47:41 -0800
committerGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-30 13:47:41 -0800
commitf21eb2573b398a83dedf3d2123e1d8438106b492 (patch)
tree16abe8f5ca869d006dc17fef5c012a35d74e0033 /src/php/lib/Grpc/BaseStub.php
parentb24b50094c2eb6d617847ff957afcc58ac5c569c (diff)
Fixed PHP interop tests
Diffstat (limited to 'src/php/lib/Grpc/BaseStub.php')
-rwxr-xr-xsrc/php/lib/Grpc/BaseStub.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php
index e1feb1206b..e745ec3709 100755
--- a/src/php/lib/Grpc/BaseStub.php
+++ b/src/php/lib/Grpc/BaseStub.php
@@ -10,8 +10,8 @@ class BaseStub {
private $channel;
- public function __construct($hostname) {
- $this->channel = new Channel($hostname, []);
+ public function __construct($hostname, $opts) {
+ $this->channel = new Channel($hostname, $opts);
}
/**