/** * Gets the request method * * @return string Request Method */ private static function get_method() { if (!self::$method) { self::$method = $_SERVER['REQUEST_METHOD']; } return strtolower(self::$method); }