logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Router::Simple::SubMapper - submapper

Description

       Router::Simple::SubMapper is sub-mapper for Router::Simple.  This class provides shorthand to create
       routes, that have common parts.

Methods

       my $submapper = $router->submapper(%args);
           Do not call this method directly.You should create new instance from $router->submapper(%args).

       $submapper->connect(@args)
           This method creates new route to parent $router with @args and arguments of ->submapper().

           This method returns $submapper itself for method-chain.

       $submapper->submapper(%args)
           submapper() can be called recursively to build nested routes.

           This method returns $submapper itself for method-chain.

Name

       Router::Simple::SubMapper - submapper

See Also

       Router::Simple

perl v5.36.0                                       2022-11-27                     Router::Simple::SubMapper(3pm)

Synopsis

           use Router::Simple;

           my $router = Router::Simple->new();
           my $s = $router->submapper('/entry/{id}', {controller => 'Entry'});
           $s->connect('/edit' => {action => 'edit'})
             ->connect('/show' => {action => 'show'});

See Also