From: Mark Slee Date: Thu, 21 Sep 2006 01:26:28 +0000 (+0000) Subject: Ooops function __construct not just __construct X-Git-Tag: 0.2.0~1671 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=20c70a67be9dc7bb9ae54e3c52f14f36d75913f0;p=common%2Fthrift.git 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 2d41b400..21846601 100644 --- a/lib/php/src/transport/TFramedTransport.php +++ b/lib/php/src/transport/TFramedTransport.php @@ -35,7 +35,7 @@ class TFramedTransport extends TTransport { * * @param TTransport $transport Underlying transport */ - public __construct($transport=null) { + public function __construct($transport=null) { $this->transport_ = $transport; }