diff options
author | Stanley Cheung <stanleycheung@google.com> | 2015-10-27 13:27:05 -0700 |
---|---|---|
committer | Stanley Cheung <stanleycheung@google.com> | 2015-10-27 13:27:05 -0700 |
commit | d5b20566f2517eae9373b930e82b45cf2f407d9e (patch) | |
tree | a8ecf17061d12aaf94ed3518c4117869f4e2b0fb /src/php/tests/generated_code/GeneratedCodeTest.php | |
parent | 21ca91a6a41195ccee1cfde0e5f048cc9ec5d42d (diff) |
php: ran php-cs-fixer to comply with php coding standard
Diffstat (limited to 'src/php/tests/generated_code/GeneratedCodeTest.php')
-rwxr-xr-x | src/php/tests/generated_code/GeneratedCodeTest.php | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/php/tests/generated_code/GeneratedCodeTest.php b/src/php/tests/generated_code/GeneratedCodeTest.php index 64bcf45b4a..7043e8e1d1 100755 --- a/src/php/tests/generated_code/GeneratedCodeTest.php +++ b/src/php/tests/generated_code/GeneratedCodeTest.php @@ -31,15 +31,18 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ -require_once dirname(__FILE__) . '/AbstractGeneratedCodeTest.php'; +require_once dirname(__FILE__).'/AbstractGeneratedCodeTest.php'; -class GeneratedCodeTest extends AbstractGeneratedCodeTest { - public function setUp() { - self::$client = new math\MathClient( +class GeneratedCodeTest extends AbstractGeneratedCodeTest +{ + public function setUp() + { + self::$client = new math\MathClient( getenv('GRPC_TEST_HOST'), []); - } + } - public static function tearDownAfterClass() { - self::$client->close(); - } + public static function tearDownAfterClass() + { + self::$client->close(); + } } |