diff options
author | murgatroid99 <mlumish@google.com> | 2015-03-27 13:15:58 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-03-27 13:15:58 -0700 |
commit | b2a6d01974dad8053f6f7bd1ce7c055e8672bf97 (patch) | |
tree | 9a1b3398c61c8fd15369cb85039da6ec8cadfd39 /src/php/lib/Grpc | |
parent | d506d55a0847e1cdf0df7f14911736adcc10f680 (diff) |
Replaced existing autoloader with one generated by composer
Diffstat (limited to 'src/php/lib/Grpc')
-rw-r--r-- | src/php/lib/Grpc/AbstractCall.php | 2 | ||||
-rwxr-xr-x | src/php/lib/Grpc/BaseStub.php | 2 | ||||
-rw-r--r-- | src/php/lib/Grpc/BidiStreamingCall.php | 2 | ||||
-rw-r--r-- | src/php/lib/Grpc/ClientStreamingCall.php | 2 | ||||
-rw-r--r-- | src/php/lib/Grpc/ServerStreamingCall.php | 2 | ||||
-rw-r--r-- | src/php/lib/Grpc/UnaryCall.php | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/php/lib/Grpc/AbstractCall.php b/src/php/lib/Grpc/AbstractCall.php index b813d16470..d7c3263040 100644 --- a/src/php/lib/Grpc/AbstractCall.php +++ b/src/php/lib/Grpc/AbstractCall.php @@ -33,7 +33,7 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); abstract class AbstractCall { diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php index 9bc1711110..83e992ae70 100755 --- a/src/php/lib/Grpc/BaseStub.php +++ b/src/php/lib/Grpc/BaseStub.php @@ -32,7 +32,7 @@ * */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); /** * Base class for generated client stubs. Stub methods are expected to call diff --git a/src/php/lib/Grpc/BidiStreamingCall.php b/src/php/lib/Grpc/BidiStreamingCall.php index 0d3dd629f2..d45fd21510 100644 --- a/src/php/lib/Grpc/BidiStreamingCall.php +++ b/src/php/lib/Grpc/BidiStreamingCall.php @@ -32,7 +32,7 @@ * */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); /** * Represents an active call that allows for sending and recieving messages in diff --git a/src/php/lib/Grpc/ClientStreamingCall.php b/src/php/lib/Grpc/ClientStreamingCall.php index 4b3abcbdec..17c85b4c2b 100644 --- a/src/php/lib/Grpc/ClientStreamingCall.php +++ b/src/php/lib/Grpc/ClientStreamingCall.php @@ -32,7 +32,7 @@ * */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); /** * Represents an active call that sends a stream of messages and then gets a diff --git a/src/php/lib/Grpc/ServerStreamingCall.php b/src/php/lib/Grpc/ServerStreamingCall.php index 7458f28bcb..ac5e02eb53 100644 --- a/src/php/lib/Grpc/ServerStreamingCall.php +++ b/src/php/lib/Grpc/ServerStreamingCall.php @@ -33,7 +33,7 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); /** * Represents an active call that sends a single message and then gets a stream diff --git a/src/php/lib/Grpc/UnaryCall.php b/src/php/lib/Grpc/UnaryCall.php index bbf9cfb588..14c024085c 100644 --- a/src/php/lib/Grpc/UnaryCall.php +++ b/src/php/lib/Grpc/UnaryCall.php @@ -33,7 +33,7 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../autoload.php'); +require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); /** * Represents an active call that sends a single message and then gets a single |