diff options
Diffstat (limited to 'src/php/lib')
-rw-r--r-- | src/php/lib/Grpc/AbstractCall.php | 2 | ||||
-rwxr-xr-x | src/php/lib/Grpc/BaseStub.php | 1 | ||||
-rw-r--r-- | src/php/lib/Grpc/BidiStreamingCall.php | 1 | ||||
-rw-r--r-- | src/php/lib/Grpc/ClientStreamingCall.php | 1 | ||||
-rw-r--r-- | src/php/lib/Grpc/ServerStreamingCall.php | 2 | ||||
-rw-r--r-- | src/php/lib/Grpc/UnaryCall.php | 2 |
6 files changed, 0 insertions, 9 deletions
diff --git a/src/php/lib/Grpc/AbstractCall.php b/src/php/lib/Grpc/AbstractCall.php index d7c3263040..d81df97067 100644 --- a/src/php/lib/Grpc/AbstractCall.php +++ b/src/php/lib/Grpc/AbstractCall.php @@ -33,8 +33,6 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); - abstract class AbstractCall { protected $call; diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php index 83e992ae70..fc83dace20 100755 --- a/src/php/lib/Grpc/BaseStub.php +++ b/src/php/lib/Grpc/BaseStub.php @@ -32,7 +32,6 @@ * */ namespace Grpc; -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 d45fd21510..454f7621ae 100644 --- a/src/php/lib/Grpc/BidiStreamingCall.php +++ b/src/php/lib/Grpc/BidiStreamingCall.php @@ -32,7 +32,6 @@ * */ namespace Grpc; -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 17c85b4c2b..fa29037b42 100644 --- a/src/php/lib/Grpc/ClientStreamingCall.php +++ b/src/php/lib/Grpc/ClientStreamingCall.php @@ -32,7 +32,6 @@ * */ namespace Grpc; -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 ac5e02eb53..574c1bb1e0 100644 --- a/src/php/lib/Grpc/ServerStreamingCall.php +++ b/src/php/lib/Grpc/ServerStreamingCall.php @@ -33,8 +33,6 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); - /** * Represents an active call that sends a single message and then gets a stream * of reponses diff --git a/src/php/lib/Grpc/UnaryCall.php b/src/php/lib/Grpc/UnaryCall.php index 14c024085c..814d477697 100644 --- a/src/php/lib/Grpc/UnaryCall.php +++ b/src/php/lib/Grpc/UnaryCall.php @@ -33,8 +33,6 @@ */ namespace Grpc; -require_once realpath(dirname(__FILE__) . '/../../vendor/autoload.php'); - /** * Represents an active call that sends a single message and then gets a single * response. |