Add comments

pull/9492/head
Stanley Cheung 8 years ago
parent 1a3f4a55c2
commit 6481d04ae6
  1. 3
      src/php/tests/generated_code/AbstractGeneratedCodeTest.php
  2. 4
      src/php/tests/interop/interop_client.php

@ -32,6 +32,9 @@
*
*/
require_once realpath(dirname(__FILE__).'/../../vendor/autoload.php');
// The following includes are needed when using protobuf 3.1.0
// and will suppress warnings when using protobuf 3.2.0+
@include_once dirname(__FILE__).'/math.pb.php';
@include_once dirname(__FILE__).'/math_grpc_pb.php';

@ -32,8 +32,12 @@
*
*/
require_once realpath(dirname(__FILE__).'/../../vendor/autoload.php');
// The following includes are needed when using protobuf 3.1.0
// and will suppress warnings when using protobuf 3.2.0+
@include_once 'src/proto/grpc/testing/test.pb.php';
@include_once 'src/proto/grpc/testing/test_grpc_pb.php';
use Google\Auth\CredentialsLoader;
use Google\Auth\ApplicationDefaultCredentials;
use GuzzleHttp\ClientInterface;

Loading…
Cancel
Save