DomCI : Update all the PHPDoc
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3279 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
@@ -12,8 +12,10 @@ class ratelimit
|
||||
public $unittime = 60;
|
||||
|
||||
/** The function set a rate-limit
|
||||
@return bool true if the rate-limit is not overloaded
|
||||
false if the rate-limit is overloaded */
|
||||
* @param string $name The rate-limit object to set
|
||||
* @return bool true if the rate-limit is not overloaded
|
||||
* false if the rate-limit is overloaded
|
||||
*/
|
||||
public function set ($name)
|
||||
{
|
||||
throw new Exception (dgettext("domframework",
|
||||
@@ -22,7 +24,9 @@ class ratelimit
|
||||
}
|
||||
|
||||
/** The function delete a rate-limit
|
||||
@return bool */
|
||||
* @param string $name The rate-limit object to del
|
||||
* @return bool
|
||||
*/
|
||||
public function del ($name)
|
||||
{
|
||||
throw new Exception (dgettext("domframework",
|
||||
@@ -31,7 +35,8 @@ class ratelimit
|
||||
}
|
||||
|
||||
/** The function clean the storage
|
||||
@return bool */
|
||||
* @return bool
|
||||
*/
|
||||
public function clean ()
|
||||
{
|
||||
throw new Exception (dgettext("domframework",
|
||||
|
||||
Reference in New Issue
Block a user