Bramus\Router\Router::put PHP Method

put() public method

Shorthand for a route accessed using PUT
public put ( string $pattern, object | callable $fn )
$pattern string A route pattern such as /about/system
$fn object | callable The handling function to be executed
    public function put($pattern, $fn)
    {
        $this->match('PUT', $pattern, $fn);
    }