aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf/Internal/MapEntry.php
diff options
context:
space:
mode:
authorJisi Liu <liujisi@google.com>2017-08-07 11:47:29 -0700
committerGitHub <noreply@github.com>2017-08-07 11:47:29 -0700
commit3afcded28a6aa9c44adf801ca5bff2133fcf3030 (patch)
treecebd73fdf090a98c32ad1a1c996af9cc8f1f8ad6 /php/src/Google/Protobuf/Internal/MapEntry.php
parent176713d6fbbf72056b009f76e7625f267273bd75 (diff)
parent8f4b8e430a0cf087af423be434cf8d837027c651 (diff)
downloadprotobuf-3afcded28a6aa9c44adf801ca5bff2133fcf3030.tar.gz
protobuf-3afcded28a6aa9c44adf801ca5bff2133fcf3030.tar.bz2
protobuf-3afcded28a6aa9c44adf801ca5bff2133fcf3030.zip
Merge pull request #3461 from TeBoring/3.4.xv3.4.0rc1
Merge master into 3.4.x
Diffstat (limited to 'php/src/Google/Protobuf/Internal/MapEntry.php')
-rw-r--r--php/src/Google/Protobuf/Internal/MapEntry.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/php/src/Google/Protobuf/Internal/MapEntry.php b/php/src/Google/Protobuf/Internal/MapEntry.php
index 926645e1..9c32f1ea 100644
--- a/php/src/Google/Protobuf/Internal/MapEntry.php
+++ b/php/src/Google/Protobuf/Internal/MapEntry.php
@@ -39,7 +39,7 @@ class MapEntry extends Message
public $key;
public $value;
- public function setKey(&$key) {
+ public function setKey($key) {
$this->key = $key;
}
@@ -47,7 +47,7 @@ class MapEntry extends Message
return $this->key;
}
- public function setValue(&$value) {
+ public function setValue($value) {
$this->value = $value;
}