aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib/Grpc/AbstractCall.php
diff options
context:
space:
mode:
authorGravatar thinkerou <thinkerou@gmail.com>2017-01-20 18:20:47 +0800
committerGravatar thinkerou <thinkerou@gmail.com>2017-01-20 18:24:20 +0800
commit8772a366ba4775f5de8984f0476081eda23b3c48 (patch)
tree8970b1f3a6b64ec6daa78665113c8f04fc8a3ffa /src/php/lib/Grpc/AbstractCall.php
parent659e563e2eb03ff01681995e465597e8493abcf3 (diff)
update method prop visibility
Diffstat (limited to 'src/php/lib/Grpc/AbstractCall.php')
-rw-r--r--src/php/lib/Grpc/AbstractCall.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/php/lib/Grpc/AbstractCall.php b/src/php/lib/Grpc/AbstractCall.php
index 9f0b02b8bb..50bea77f92 100644
--- a/src/php/lib/Grpc/AbstractCall.php
+++ b/src/php/lib/Grpc/AbstractCall.php
@@ -127,7 +127,7 @@ abstract class AbstractCall
*
* @return string The protobuf binary format
*/
- protected function serializeMessage($data)
+ protected function _serializeMessage($data)
{
// Proto3 implementation
if (method_exists($data, 'encode')) {
@@ -145,7 +145,7 @@ abstract class AbstractCall
*
* @return mixed The deserialized value
*/
- protected function deserializeResponse($value)
+ protected function _deserializeResponse($value)
{
if ($value === null) {
return;