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);
    }