Checking in changes prior to tagging of version 0.14.
[catagits/Web-Session.git] / lib / Plack / Session / Store / Null.pm
index cded1ec..cfb5df1 100644 (file)
@@ -2,13 +2,13 @@ package Plack::Session::Store::Null;
 use strict;
 use warnings;
 
-our $VERSION   = '0.03';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new     { bless {} => shift }
 sub fetch   {}
 sub store   {}
-sub cleanup {}
+sub remove  {}
 
 1;
 
@@ -43,7 +43,7 @@ L<Plack::Session> requires a C<store> instance, so you can use this
 one and all methods will return null.
 
 This is a subclass of L<Plack::Session::Store> and implements
-it's full interface.
+its full interface.
 
 =head1 BUGS