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:
2016-12-09 14:47:48 +00:00
parent b102168208
commit b55ea95fae
21 changed files with 953 additions and 424 deletions

View File

@@ -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",