Roller\Router::post PHP Method

post() public method

public post ( $path, $callback, $options = [] )
    public function post($path, $callback, $options = array())
    {
        if ($this->hasCache) {
            return;
        }
        return $this->routes->post($path, $callback, $options);
    }