parameters, including $_GET, $_POST and $_COOKIE/$_SESSION
Signed-off-by: Roland Häder <roland@mxchange.org>
}
/**
- * Checks all parameters, like $_GET, $_POST, $_COOKIE and also "emulated"
+ * Parses all parameters, like $_GET, $_POST, $_COOKIE and also "emulated"
* from command-line. Accepted CLI parameters are in following forms:
*
* --foo=bar - parameter 'foo' gets value "bar" (string)
*
* app=tests - launches application 'tests' (parameter 'app' gets string value "tests")
*/
- public static function checkParameters () {
+ public static function parseParameters () {
}
}
require self::detectFrameworkPath() . 'bootstrap/bootstrap.inc.php';
/*
- * Initial bootstrap is done, continue with checking parameters and
+ * Initial bootstrap is done, continue with parsing parameters and
* look for 'app'.
*/
- FrameworkBootstrap::checkParameters();
+ FrameworkBootstrap::parseParameters();
}
}