diff options
author | murgatroid99 <mlumish@google.com> | 2015-04-02 10:09:26 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-04-02 10:09:26 -0700 |
commit | 10286d3f60d9f2e1c9702be43f6a716986facdab (patch) | |
tree | 54a0244052b08c248a147e3b3c148d0a6aa7a0af /src/php/lib/Grpc/AbstractCall.php | |
parent | c1d7e24751c50c0d1471498454f9a657dc0dcb01 (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.php | 2 |
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; } |