php: Improve some docblock comments for TSocket
authorDavid Reiss <dreiss@apache.org>
Thu, 26 Mar 2009 04:27:47 +0000 (04:27 +0000)
committerDavid Reiss <dreiss@apache.org>
Thu, 26 Mar 2009 04:27:47 +0000 (04:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@758516 13f79535-47bb-0310-9956-ffa450edef68

lib/php/src/transport/TSocket.php

index 7c47958..66028fd 100644 (file)
@@ -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;