This is an automated email from the ASF dual-hosted git repository.
jking pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
The following commit(s) were added to refs/heads/master by this push:
new 22749ac THRIFT-4751: Missing imports in TProtocol (phpdoc related
only) Client: php
22749ac is described below
commit 22749ac376b10982eb5fa5a32ba336b20e1e6344
Author: Florian Lonqueu-Brochard <[email protected]>
AuthorDate: Thu Jan 24 11:46:11 2019 +0100
THRIFT-4751: Missing imports in TProtocol (phpdoc related only)
Client: php
---
lib/php/lib/Protocol/TProtocol.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/php/lib/Protocol/TProtocol.php
b/lib/php/lib/Protocol/TProtocol.php
index 81aceb6..f7b581f 100644
--- a/lib/php/lib/Protocol/TProtocol.php
+++ b/lib/php/lib/Protocol/TProtocol.php
@@ -22,6 +22,8 @@
namespace Thrift\Protocol;
+use Thrift\Exception\TException;
+use Thrift\Transport\TTransport;
use Thrift\Type\TType;
use Thrift\Exception\TProtocolException;
@@ -38,7 +40,7 @@ abstract class TProtocol
protected $trans_;
/**
- * Constructor
+ * @param TTransport $trans
*/
protected function __construct($trans)
{