NAME

Mojolicious::Plugin::FastHelpers::Controller - Base class for fast controllers

SYNOPSIS

See "SYNOPSIS" in Mojolicious::Plugin::FastHelpers.

DESCRIPTION

Mojolicious::Plugin::FastHelpers::Controller is a substitute for Mojolicious::Controller, if you want your controllers to be fast.

METHODS

app

$app = $self->app;
$self = $self->app(Mojolicious->new);

Overrides "app" in Mojolicious::Controller and applies the helpers from the $app as native methods.

new

$self = Mojolicious::Plugin::FastHelpers::Controller->new(app => $app, ...);
$self = Mojolicious::Plugin::FastHelpers::Controller->new({app => $app, ...});

See "app"

SEE ALSO

Mojolicious::Plugin::FastHelpers.