From d3fceb02d450f415088c254ca5fb65d2f32085c0 Mon Sep 17 00:00:00 2001 From: Bryan Duxbury Date: Mon, 21 Mar 2011 18:04:08 +0000 Subject: [PATCH] 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 --- lib/php/src/protocol/TBinaryProtocol.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_); } } -- 2.17.1