Skip to content

Commit

Permalink
Mention time units in all timeout-related methods (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-demb authored Dec 21, 2021
1 parent 18ae76a commit bb76112
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions stubs/AMQPConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public function getTimeout()
}

/**
* Sets the interval of time to wait for income activity from AMQP broker
* Sets the interval of time (in seconds) to wait for income activity from AMQP broker
*
* @param float $timeout
*
Expand All @@ -282,7 +282,7 @@ public function setReadTimeout($timeout)
}

/**
* Get the configured interval of time to wait for income activity
* Get the configured interval of time (in seconds) to wait for income activity
* from AMQP broker
*
* @return float
Expand All @@ -292,7 +292,7 @@ public function getReadTimeout()
}

/**
* Sets the interval of time to wait for outcome activity to AMQP broker
* Sets the interval of time (in seconds) to wait for outcome activity to AMQP broker
*
* @param float $timeout
*
Expand All @@ -305,7 +305,7 @@ public function setWriteTimeout($timeout)
}

/**
* Get the configured interval of time to wait for outcome activity
* Get the configured interval of time (in seconds) to wait for outcome activity
* to AMQP broker
*
* @return float
Expand All @@ -315,7 +315,7 @@ public function getWriteTimeout()
}

/**
* Sets the interval of time to wait for RPC activity to AMQP broker
* Sets the interval of time to wait (in seconds) for RPC activity to AMQP broker
*
* @param float $timeout
*
Expand All @@ -328,7 +328,7 @@ public function setRpcTimeout($timeout)
}

/**
* Get the configured interval of time to wait for RPC activity
* Get the configured interval of time (in seconds) to wait for RPC activity
* to AMQP broker
*
* @return float
Expand Down

0 comments on commit bb76112

Please sign in to comment.