Roller\Router::get PHP Method

get() public method

We define get, post, any methods because __call is slower (2 times)
public get ( $path, $callback, $options = [] )
    public function get($path, $callback, $options = array())
    {
        if ($this->hasCache) {
            return;
        }
        return $this->routes->get($path, $callback, $options);
    }