X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FBase.pm;fp=lib%2FCatalyst%2FBase.pm;h=6ef8fd3a1ab465beca5eeffea1a1b72871a04cbd;hp=659a97d21efe6b827dce5fa524ca7434a062343b;hb=dec1adb07ece5c25d6e91cc3b1670ce22d12e445;hpb=c4d02967407405042bdf9ea08223b5582612d8d1 diff --git a/lib/Catalyst/Base.pm b/lib/Catalyst/Base.pm index 659a97d..6ef8fd3 100644 --- a/lib/Catalyst/Base.pm +++ b/lib/Catalyst/Base.pm @@ -1,9 +1,13 @@ package Catalyst::Base; - -use base qw/Catalyst::Controller/; use Moose; +BEGIN { extends 'Catalyst::Controller' } no Moose; +after 'BUILD' => sub { + my $self = shift; + warn(ref($self) . " is using the deprecated Catalyst::Base, update your application as this will be removed in the next major release"); +}; + 1; __END__ @@ -15,7 +19,10 @@ Catalyst::Base - Deprecated base class =head1 DESCRIPTION This used to be the base class for Catalyst Controllers. It -remains here for compatibility reasons. +remains here for compatibility reasons, but its use is highly deprecated. + +If your application produces a warning, then please update your application to +inherit from L instead. =head1 SEE ALSO