CapMousse\ReactRestify\Server::group PHP Method

group() public method

Create a new group of route
public group ( String $prefix, Callable $callback ) : CapMousse\ReactRestify\Routing\Routes
$prefix String prefix of the routes
$callback Callable
return CapMousse\ReactRestify\Routing\Routes
    public function group($prefix, $callback)
    {
        return $this->router->addGroup($prefix, $callback);
    }