From: David Reiss Date: Thu, 26 Mar 2009 04:27:47 +0000 (+0000) Subject: php: Improve some docblock comments for TSocket X-Git-Tag: 0.2.0~216 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=5ab303c16594ceba1e4e60ffde47653fb9d2cd3e;p=common%2Fthrift.git php: Improve some docblock comments for TSocket git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@758516 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/php/src/transport/TSocket.php b/lib/php/src/transport/TSocket.php index 7c479583..66028fd7 100644 --- a/lib/php/src/transport/TSocket.php +++ b/lib/php/src/transport/TSocket.php @@ -101,7 +101,7 @@ class TSocket extends TTransport { /** * Sets the send timeout. * - * @param int $timeout + * @param int $timeout Timeout in milliseconds. */ public function setSendTimeout($timeout) { $this->sendTimeout_ = $timeout; @@ -110,7 +110,7 @@ class TSocket extends TTransport { /** * Sets the receive timeout. * - * @param int $timeout + * @param int $timeout Timeout in milliseconds. */ public function setRecvTimeout($timeout) { $this->recvTimeout_ = $timeout;