THRIFT-1098. php: Undefined properties in TBinaryProtocolFactory
authorBryan Duxbury <bryanduxbury@apache.org>
Mon, 21 Mar 2011 18:04:08 +0000 (18:04 +0000)
committerBryan Duxbury <bryanduxbury@apache.org>
Mon, 21 Mar 2011 18:04:08 +0000 (18:04 +0000)
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

index f4579e1..b5bc750 100644 (file)
@@ -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_);
   }
 }