From: Bryan Duxbury Date: Mon, 21 Mar 2011 18:04:08 +0000 (+0000) Subject: THRIFT-1098. php: Undefined properties in TBinaryProtocolFactory X-Git-Tag: 0.7.0~144 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=d3fceb02d450f415088c254ca5fb65d2f32085c0;p=common%2Fthrift.git THRIFT-1098. php: Undefined properties in TBinaryProtocolFactory Corrected some typos. Patch: Torben Brodt git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1083882 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/php/src/protocol/TBinaryProtocol.php b/lib/php/src/protocol/TBinaryProtocol.php index f4579e14..b5bc750f 100644 --- a/lib/php/src/protocol/TBinaryProtocol.php +++ b/lib/php/src/protocol/TBinaryProtocol.php @@ -403,7 +403,7 @@ class TBinaryProtocolFactory implements TProtocolFactory { } public function getProtocol($trans) { - return new TBinaryProtocol($trans, $this->strictRead, $this->strictWrite); + return new TBinaryProtocol($trans, $this->strictRead_, $this->strictWrite_); } }