aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-03-27 15:31:20 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-03-27 15:31:20 -0700
commit9ddc3da29fd0a5234b1ad318a85c912017cfbd91 (patch)
tree2d7b04a8fafd3ddb6d4f0e037f956589ecb31f97 /src/php/lib
parentb7d9daa8a95f5828facb4f5ed4a395b64c140ce9 (diff)
Removed redundant autoload require lines
Diffstat (limited to 'src/php/lib')
-rw-r--r--src/php/lib/Grpc/AbstractCall.php2
-rwxr-xr-xsrc/php/lib/Grpc/BaseStub.php1
-rw-r--r--src/php/lib/Grpc/BidiStreamingCall.php1
-rw-r--r--src/php/lib/Grpc/ClientStreamingCall.php1
-rw-r--r--src/php/lib/Grpc/ServerStreamingCall.php2
-rw-r--r--src/php/lib/Grpc/UnaryCall.php2
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.