Refreshing branch
[catagits/Catalyst-Runtime.git] / trunk / lib / Catalyst / Base.pm
CommitLineData
ceae39c5 1package Catalyst::Base;
2use Moose;
3BEGIN { extends 'Catalyst::Controller' }
4
5after 'BUILD' => sub {
6 my $self = shift;
7 warn(ref($self) . " is using the deprecated Catalyst::Base, update your application as this will be removed in the next major release");
8};
9
10no Moose;
11
121;
13
14__END__
15
16=head1 NAME
17
18Catalyst::Base - Deprecated base class
19
20=head1 DESCRIPTION
21
22This used to be the base class for Catalyst Controllers. It
23remains here for compatibility reasons, but its use is highly deprecated.
24
25If your application produces a warning, then please update your application to
26inherit from L<Catalyst::Controller> instead.
27
28=head1 SEE ALSO
29
30L<Catalyst>, L<Catalyst::Controller>.
31
32=head1 AUTHORS
33
34Catalyst Contributors, see Catalyst.pm
35
36=head1 COPYRIGHT
37
38This library is free software. You can redistribute it and/or modify it under
39the same terms as Perl itself.
40
41=cut