Repository: thrift Updated Branches: refs/heads/master 02c95c1c4 -> 5d1521225
THRIFT-2434 Missing namespace import for php TMultiplexedProcessor implementation Patch: Mauro Maggi Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/8001421b Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/8001421b Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/8001421b Branch: refs/heads/master Commit: 8001421b88f4322d11f32686a9ba770d2c99cd97 Parents: 02c95c1 Author: Jens Geyer <[email protected]> Authored: Tue Apr 1 21:24:27 2014 +0200 Committer: Jens Geyer <[email protected]> Committed: Tue Apr 1 21:24:27 2014 +0200 ---------------------------------------------------------------------- lib/php/lib/Thrift/TMultiplexedProcessor.php | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/8001421b/lib/php/lib/Thrift/TMultiplexedProcessor.php ---------------------------------------------------------------------- diff --git a/lib/php/lib/Thrift/TMultiplexedProcessor.php b/lib/php/lib/Thrift/TMultiplexedProcessor.php index 9146ab6..c62e325 100644 --- a/lib/php/lib/Thrift/TMultiplexedProcessor.php +++ b/lib/php/lib/Thrift/TMultiplexedProcessor.php @@ -22,6 +22,7 @@ namespace Thrift; +use Thrift\Exception\TException; use Thrift\Protocol\TProtocol; use Thrift\Protocol\TMultiplexedProtocol; use Thrift\Protocol\TProtocolDecorator;
