1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

PHPDoc updates

This commit is contained in:
Cameron
2019-01-26 10:28:08 -08:00
parent f003a092fc
commit b19463b259
3 changed files with 73 additions and 48 deletions

View File

@@ -20,12 +20,14 @@ if (!defined('e107_INIT')) { exit; }
class eCLI
{
/**
* Provided a list of command line arguments, parse them in a unix manner.
* If no args are provided, will default to $_SERVER['argv']
*
* @return array arg values
*/
* Provided a list of command line arguments, parse them in a unix manner.
* If no args are provided, will default to $_SERVER['argv']
*
* @param string $argv
* @return array arg values
*/
function parse_args($argv='')
{
@@ -90,4 +92,3 @@ class eCLI
}
}
?>