forgot to rename psgix.session to plack.session in the example
[catagits/Web-Session.git] / lib / Plack / Session / Store / Null.pm
CommitLineData
9bb20750 1package Plack::Session::Store::Null;
2use strict;
3use warnings;
4
5sub new { bless {} => shift }
6sub fetch {}
7sub store {}
8sub delete {}
9sub cleanup {}
10sub persist {}
11
121;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Plack::Session::Store::Null - Null store
21
22=head1 DESCRIPTION
23
24Sometimes you don't want to store anything in your sessions, but
25L<Plack::Session> requires a C<store> instance, so you can use this
26one and all methods will return null.
27
28=head1 BUGS
29
30All complex software has bugs lurking in it, and this module is no
31exception. If you find a bug please either email me, or add the bug
32to cpan-RT.
33
34=head1 AUTHOR
35
36Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
37
38=head1 COPYRIGHT AND LICENSE
39
40Copyright 2009 Infinity Interactive, Inc.
41
42L<http://www.iinteractive.com>
43
44This library is free software; you can redistribute it and/or modify
45it under the same terms as Perl itself.
46
47=cut
48