diff options
author | Brent Shaffer <betterbrent@google.com> | 2017-07-17 09:14:46 -0700 |
---|---|---|
committer | Paul Yang <TeBoring@users.noreply.github.com> | 2017-07-17 09:14:46 -0700 |
commit | 324b20a49170cb38d15ef243bc044026adb54ae1 (patch) | |
tree | 7b2e7a82b26d6246d48e15b2d32e37c64ecefef9 /php/src/Google/Protobuf/Internal/MethodOptions.php | |
parent | 29ff49f5345693bd04aa37654aa002054d1b9780 (diff) |
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/MethodOptions.php')
-rw-r--r-- | php/src/Google/Protobuf/Internal/MethodOptions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/Google/Protobuf/Internal/MethodOptions.php b/php/src/Google/Protobuf/Internal/MethodOptions.php index 5b2db776..17a8b453 100644 --- a/php/src/Google/Protobuf/Internal/MethodOptions.php +++ b/php/src/Google/Protobuf/Internal/MethodOptions.php @@ -128,7 +128,7 @@ class MethodOptions extends \Google\Protobuf\Internal\Message * @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ - public function setUninterpretedOption(&$var) + public function setUninterpretedOption($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption::class); $this->uninterpreted_option = $arr; |