commit | f21eb2573b398a83dedf3d2123e1d8438106b492 | [log] [tgz] |
---|---|---|
author | murgatroid99 <michael.lumish@gmail.com> | Fri Jan 30 13:47:41 2015 -0800 |
committer | murgatroid99 <michael.lumish@gmail.com> | Fri Jan 30 13:47:41 2015 -0800 |
tree | 16abe8f5ca869d006dc17fef5c012a35d74e0033 | |
parent | b24b50094c2eb6d617847ff957afcc58ac5c569c [diff] [blame] |
Fixed PHP interop tests
diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php index e1feb12..e745ec3 100755 --- a/src/php/lib/Grpc/BaseStub.php +++ b/src/php/lib/Grpc/BaseStub.php
@@ -10,8 +10,8 @@ private $channel; - public function __construct($hostname) { - $this->channel = new Channel($hostname, []); + public function __construct($hostname, $opts) { + $this->channel = new Channel($hostname, $opts); } /**