Example #1
0
 /**
  * The constructor of Request
  *
  * @return void
  */
 public function __construct()
 {
     self::$getParams = $_GET;
     self::$postParams = $_POST;
     self::$filesParams = $_FILES;
     self::$requestURL = $_SERVER["REQUEST_URI"];
     self::$parameters = array();
 }