From f45cbb64360f3d5a9ec5de2459a820ca4adaa517 Mon Sep 17 00:00:00 2001 From: Ma Bingyao Date: Thu, 16 Feb 2017 12:46:28 +0800 Subject: [PATCH] Fixed a notice --- src/Hprose/Service.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Hprose/Service.php b/src/Hprose/Service.php index e17ba498..f0e70bf9 100644 --- a/src/Hprose/Service.php +++ b/src/Hprose/Service.php @@ -14,7 +14,7 @@ * * * hprose service class for php 5.3+ * * * - * LastModified: Nov 6, 2016 * + * LastModified: Feb 16, 2017 * * Author: Ma Bingyao * * * \**********************************************************/ @@ -400,6 +400,7 @@ private function doInvoke(BytesIO $stream, stdClass $context) { foreach ($context as $key => $value) { $cc->$key = $value; } + $call = false; if (isset($this->calls[$alias])) { $call = $this->calls[$alias]; }