aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib/Grpc/AbstractCall.php
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanley.cheung@gmail.com>2017-01-26 19:31:48 -0800
committerGravatar GitHub <noreply@github.com>2017-01-26 19:31:48 -0800
commitde78a21579dabf84a7710fce2ff4fa2bfdb7e04c (patch)
tree5b2c85afcd35550ed507dc72e6ff06c6a98cd057 /src/php/lib/Grpc/AbstractCall.php
parent8914ce0872f8dc743aba43533247e3460e7cded8 (diff)
parent8772a366ba4775f5de8984f0476081eda23b3c48 (diff)
Merge pull request #9416 from thinkerou/update_method_property_visibility
PHP: Update the visibility property of method
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 1d51a8e66c..40387abdc0 100644
--- a/src/php/lib/Grpc/AbstractCall.php
+++ b/src/php/lib/Grpc/AbstractCall.php
@@ -126,7 +126,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')) {
@@ -144,7 +144,7 @@ abstract class AbstractCall
*
* @return mixed The deserialized value
*/
- protected function deserializeResponse($value)
+ protected function _deserializeResponse($value)
{
if ($value === null) {
return;