diff options
author | Stanley Cheung <stanleycheung@google.com> | 2015-08-20 14:39:54 -0700 |
---|---|---|
committer | Stanley Cheung <stanleycheung@google.com> | 2015-08-20 14:39:54 -0700 |
commit | 2e405d4123665f4b305e8cd022489fef8db098a1 (patch) | |
tree | 709beb9804dc75c01197453b787db0f801d2cd27 /src/php/tests/generated_code | |
parent | 3b4ebb0293df76142090eda71ae87a2828ff832a (diff) |
php: update codegen, client now extends basestub
Diffstat (limited to 'src/php/tests/generated_code')
-rwxr-xr-x | src/php/tests/generated_code/GeneratedCodeTest.php | 4 | ||||
-rw-r--r-- | src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/php/tests/generated_code/GeneratedCodeTest.php b/src/php/tests/generated_code/GeneratedCodeTest.php index 1e4742fc80..a1a2ce81db 100755 --- a/src/php/tests/generated_code/GeneratedCodeTest.php +++ b/src/php/tests/generated_code/GeneratedCodeTest.php @@ -35,7 +35,7 @@ require 'AbstractGeneratedCodeTest.php'; class GeneratedCodeTest extends AbstractGeneratedCodeTest { public static function setUpBeforeClass() { - self::$client = new math\MathClient(new Grpc\BaseStub( - getenv('GRPC_TEST_HOST'), [])); + self::$client = new math\MathClient( + getenv('GRPC_TEST_HOST'), []); } } diff --git a/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php b/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php index f8ec1e7da8..68f57d34ad 100644 --- a/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php +++ b/src/php/tests/generated_code/GeneratedCodeWithCallbackTest.php @@ -35,13 +35,13 @@ require 'AbstractGeneratedCodeTest.php'; class GeneratedCodeWithCallbackTest extends AbstractGeneratedCodeTest { public static function setUpBeforeClass() { - self::$client = new math\MathClient(new Grpc\BaseStub( + self::$client = new math\MathClient( getenv('GRPC_TEST_HOST'), ['update_metadata' => function($a_hash, $client = array()) { $a_copy = $a_hash; $a_copy['foo'] = ['bar']; return $a_copy; - }])); + }]); } } |