JasonLewis\EnhancedRouter\Router::bunch PHP Метод

bunch() публичный Метод

An alias of the group method but without the attributes.
public bunch ( Closure $callback ) : JasonLewis\EnhancedRouter\RouteGroup
$callback Closure
Результат JasonLewis\EnhancedRouter\RouteGroup
    public function bunch(Closure $callback)
    {
        return $this->group(array(), $callback);
    }