aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib
diff options
context:
space:
mode:
authorGravatar Anthony Yeh <enisoc@google.com>2015-10-15 14:57:57 -0700
committerGravatar Anthony Yeh <enisoc@google.com>2015-10-15 14:57:57 -0700
commit04e1eb8423fb4744c6e915ad2c71bfae3492ed37 (patch)
treec21f852d930f57da171bd7edb7c323a9a0dc4f89 /src/php/lib
parent2d12214dccaefc79222668ae3994602adc91b51c (diff)
PHP: Fix property reference in BaseStub::close()
Diffstat (limited to 'src/php/lib')
-rwxr-xr-xsrc/php/lib/Grpc/BaseStub.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php
index 0a3e1f78bf..d4fb3ba17e 100755
--- a/src/php/lib/Grpc/BaseStub.php
+++ b/src/php/lib/Grpc/BaseStub.php
@@ -123,7 +123,7 @@ class BaseStub {
* Close the communication channel associated with this stub
*/
public function close() {
- $channel->close();
+ $this->channel->close();
}
/**