commit | 20c70a67be9dc7bb9ae54e3c52f14f36d75913f0 | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | Thu Sep 21 01:26:28 2006 +0000 |
committer | Mark Slee <mcslee@apache.org> | Thu Sep 21 01:26:28 2006 +0000 |
tree | 79e67e4362c69661bfbcff6a2176d98c9422d3b8 | |
parent | 9a89f9b7c799a66bc75c5ed35bedc90bbf489958 [diff] |
Ooops function __construct not just __construct Reviewed By: lucas git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664801 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/php/src/transport/TFramedTransport.php b/lib/php/src/transport/TFramedTransport.php index 2d41b40..2184660 100644 --- a/lib/php/src/transport/TFramedTransport.php +++ b/lib/php/src/transport/TFramedTransport.php
@@ -35,7 +35,7 @@ * * @param TTransport $transport Underlying transport */ - public __construct($transport=null) { + public function __construct($transport=null) { $this->transport_ = $transport; }