deprecate Catalyst::Base (left for compability reasons)
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Base.pm
1 package Catalyst::Base;
2
3 use strict;
4 use base qw/Catalyst::Controller/;
5
6 1;
7
8 __END__
9
10 =head1 NAME
11
12 Catalyst::Base - Deprecated base class
13
14 =head1 DESCRIPTION
15
16 This used to be the base class for Catalyst Controllers. It
17 remains here for compability reasons.
18
19 =head1 SEE ALSO
20
21 L<Catalyst>, L<Catalyst::Controller>.
22
23 =head1 AUTHOR
24
25 Sebastian Riedel, C<sri@cpan.org>
26 Marcus Ramberg, C<mramberg@cpan.org>
27 Matt S Trout, C<mst@shadowcatsystems.co.uk>
28
29 =head1 COPYRIGHT
30
31 This program is free software, you can redistribute it and/or modify it under
32 the same terms as Perl itself.
33
34 =cut