
MojoX::Context - Context

use MojoX::Context;
my $c = MojoX::Context->new;

MojoX::Context is a context container.

MojoX::Context implements the following attributes.
app my $app = $c->app;
$c = $c->app(MojoSubclass->new);
Returns the application instance when called without arguments. Returns the invocant if called with arguments.
reqmy $req = $c->req;
resmy $res = $c->res;
stash my $stash = $c->stash;
my $foo = $c->stash('foo');
$c = $c->stash({foo => 'bar'});
$c = $c->stash(foo => 'bar');
Returns a hash reference if called without arguments. Returns a value if called with a single argument. Returns the invocant if called with a hashref or multiple arguments.
$c->stash->{foo} = 'bar';
my $foo = $c->stash->{foo};
delete $c->stash->{foo};
txmy $tx = $c->tx;

MojoX::Context inherits all methods from Mojo::Base.