@const --
describes constants created with
define()
Example
...
/**
* maximum of permitted clients at the same time
* @const MAX_CLIENTS maximum clients
*/
define("MAX_CLIENTS", 1000, true);
/**
* maximum request per client
* @const MAX_REQUESTS_PER_CLIENT
*/
define("MAX_REQUESTS_PER_CLIENT", 5);
... |