aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib/Grpc/AbstractCall.php
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-04-02 10:09:26 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-04-02 10:09:26 -0700
commit10286d3f60d9f2e1c9702be43f6a716986facdab (patch)
tree54a0244052b08c248a147e3b3c148d0a6aa7a0af /src/php/lib/Grpc/AbstractCall.php
parentc1d7e24751c50c0d1471498454f9a657dc0dcb01 (diff)
Updated PHP files to new method names
Diffstat (limited to 'src/php/lib/Grpc/AbstractCall.php')
-rw-r--r--src/php/lib/Grpc/AbstractCall.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/lib/Grpc/AbstractCall.php b/src/php/lib/Grpc/AbstractCall.php
index 413d5966e1..1add972589 100644
--- a/src/php/lib/Grpc/AbstractCall.php
+++ b/src/php/lib/Grpc/AbstractCall.php
@@ -45,7 +45,7 @@ abstract class AbstractCall {
* @param string $method The method to call on the remote server
*/
public function __construct(Channel $channel, $method, $deserialize) {
- $this->call = new Call($channel, $method, Timeval::inf_future());
+ $this->call = new Call($channel, $method, Timeval::infFuture());
$this->deserialize = $deserialize;
$this->metadata = null;
}