Move all request state out of the engine into Request/Response.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Request.pm
CommitLineData
dd4e6fd2 1package TestApp::View::Dump::Request;
2
3use strict;
4use base qw[TestApp::View::Dump];
5
6sub process {
7 my ( $self, $c ) = @_;
faa02805 8 my $r = $c->request;
9 local $r->{env};
10 return $self->SUPER::process( $c, $r );
dd4e6fd2 11}
12
131;