aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php
diff options
context:
space:
mode:
authorBrent Shaffer <betterbrent@google.com>2017-07-17 09:14:46 -0700
committerPaul Yang <TeBoring@users.noreply.github.com>2017-07-17 09:14:46 -0700
commit324b20a49170cb38d15ef243bc044026adb54ae1 (patch)
tree7b2e7a82b26d6246d48e15b2d32e37c64ecefef9 /php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php
parent29ff49f5345693bd04aa37654aa002054d1b9780 (diff)
downloadprotobuf-324b20a49170cb38d15ef243bc044026adb54ae1.tar.gz
protobuf-324b20a49170cb38d15ef243bc044026adb54ae1.tar.bz2
protobuf-324b20a49170cb38d15ef243bc044026adb54ae1.zip
remove pass by reference for php setters (#3344)
* remove pass by reference for php setters * comments out memory leak test
Diffstat (limited to 'php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php')
-rw-r--r--php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php b/php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php
index 89d6707f..b761fbcf 100644
--- a/php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php
+++ b/php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php
@@ -109,7 +109,7 @@ class EnumValueDescriptorProto extends \Google\Protobuf\Internal\Message
* @param \Google\Protobuf\Internal\EnumValueOptions $var
* @return $this
*/
- public function setOptions(&$var)
+ public function setOptions($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Internal\EnumValueOptions::class);
$this->options = $var;