File: Response.pm

package info (click to toggle)
libcatalyst-perl 5.7014-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,276 kB
  • ctags: 874
  • sloc: perl: 11,270; makefile: 48
file content (11 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
package TestApp::View::Dump::Response;

use strict;
use base qw[TestApp::View::Dump];

sub process {
    my ( $self, $c ) = @_;
    return $self->SUPER::process( $c, $c->response );
}

1;