X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAuthentication%2FStore%2FNull.pm;h=26fef140f3a629cdbc89c5cbf792ca7032c649f9;hb=202af0af514771dd8e14557e971467c522eae3f4;hp=2664685c4ffe8aad34bb36cdd39282dfbd502952;hpb=8f57bf96b78b15ca9407e6ab5d2426745ac8a1f0;p=catagits%2FCatalyst-Plugin-Authentication.git diff --git a/lib/Catalyst/Authentication/Store/Null.pm b/lib/Catalyst/Authentication/Store/Null.pm index 2664685..26fef14 100644 --- a/lib/Catalyst/Authentication/Store/Null.pm +++ b/lib/Catalyst/Authentication/Store/Null.pm @@ -1,15 +1,12 @@ package Catalyst::Authentication::Store::Null; +use Moose; +use namespace::autoclean; -use strict; -use warnings; +with 'MooseX::Emulate::Class::Accessor::Fast'; use Catalyst::Authentication::User::Hash; -use base qw( Class::Accessor::Fast ); - -BEGIN { - __PACKAGE__->mk_accessors( qw( _config ) ); -} +__PACKAGE__->mk_accessors( qw( _config ) ); sub new { my ( $class, $config, $app, $realm ) = @_;