System\Route::__callStatic PHP Method

__callStatic() public static method

Define a route using the method name as the request method to listen for
public static __callStatic ( $method, $arguments )
    public static function __callStatic($method, $arguments)
    {
        static::register($method, array_shift($arguments), array_shift($arguments));
    }