aboutsummaryrefslogtreecommitdiff
path: root/php/tests/test_util.php
diff options
context:
space:
mode:
authorPaul Yang <TeBoring@users.noreply.github.com>2017-04-19 16:23:51 -0700
committerGitHub <noreply@github.com>2017-04-19 16:23:51 -0700
commit190b5270c8717ca343db42da489e5e7d6d9efb2c (patch)
tree3815f20268bc56aac88267004149f9e4eb634223 /php/tests/test_util.php
parent43234828da6ae3a3a3ada25d11488fdfd080b79c (diff)
downloadprotobuf-190b5270c8717ca343db42da489e5e7d6d9efb2c.tar.gz
protobuf-190b5270c8717ca343db42da489e5e7d6d9efb2c.tar.bz2
protobuf-190b5270c8717ca343db42da489e5e7d6d9efb2c.zip
Make PHP c extension work with PHP7 (#2951)
Diffstat (limited to 'php/tests/test_util.php')
-rw-r--r--php/tests/test_util.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/php/tests/test_util.php b/php/tests/test_util.php
index 61f94aa1..9dbcbb62 100644
--- a/php/tests/test_util.php
+++ b/php/tests/test_util.php
@@ -51,8 +51,6 @@ class TestUtil
public static function setTestMessage(TestMessage $m)
{
- $sub = new TestMessage_Sub();
-
$m->setOptionalInt32(-42);
$m->setOptionalInt64(-43);
$m->setOptionalUint32(42);
@@ -69,6 +67,7 @@ class TestUtil
$m->setOptionalString('a');
$m->setOptionalBytes('b');
$m->setOptionalEnum(TestEnum::ONE);
+ $sub = new TestMessage_Sub();
$m->setOptionalMessage($sub);
$m->getOptionalMessage()->SetA(33);