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