Github user jeking3 commented on a diff in the pull request:
https://github.com/apache/thrift/pull/1484#discussion_r164632749
--- Diff: lib/php/lib/Transport/TBufferedTransport.php ---
@@ -78,11 +69,26 @@ public function __construct($transport = null,
$rBufSize = 512, $wBufSize = 512)
*/
protected $rBuf_ = '';
+ /**
+ * Constructor. Creates a buffered transport around an underlying
transport
+ */
+ public function __construct($transport, $rBufSize = 512, $wBufSize =
512)
--- End diff --
It would have been more obvious if the pull request changed only this line,
removing the "= null".
---