@@ -33,6 +33,11 @@ class Request {
*/
public static function method()
{
+ if ($_SERVER['REQUEST_METHOD'] == 'HEAD')
+ {
+ return 'GET';
+ }
+
return (static::spoofed()) ? $_POST[Request::spoofer] : $_SERVER['REQUEST_METHOD'];
}
@@ -26,7 +26,13 @@ class Router {
*
* @var array
- public static $routes = array();
+ public static $routes = array(
+ 'GET' => array(),
+ 'POST' => array(),
+ 'PUT' => array(),
+ 'DELETE' => array(),
+ 'HEAD' => array(),
+ );
/**
* All of the "fallback" routes that have been registered.