X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSerialize%2FStorable.pm;h=d0299cdf755b81fbb5581144c390e62a5a8ac453;hb=a2bd379666d729133d65c85dc775627937084b18;hp=7d57aea4fcc8ba35f32d446f708b9df359880252;hpb=4376a1574bc5b25f4b9160e8fc3ce329ae226e0f;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Serialize/Storable.pm b/lib/DBIx/Class/Serialize/Storable.pm index 7d57aea..d0299cd 100644 --- a/lib/DBIx/Class/Serialize/Storable.pm +++ b/lib/DBIx/Class/Serialize/Storable.pm @@ -1,9 +1,10 @@ package DBIx::Class::Serialize::Storable; use strict; use warnings; -use Storable; -use Carp::Clan qw/^DBIx::Class/; +use Storable(); +use DBIx::Class::Carp; +use namespace::clean; carp 'The Serialize::Storable component is now *DEPRECATED*. It has not ' .'been providing any useful functionality for quite a while, and in fact ' @@ -52,8 +53,8 @@ in its current implementation. Do not use! =head1 DESCRIPTION -This component adds hooks for Storable so that row objects can be -serialized. It assumes that your row object class (C) is +This component adds hooks for Storable so that result objects can be +serialized. It assumes that your result object class (C) is the same as your table class, which is the normal situation. =head1 HOOKS @@ -72,12 +73,13 @@ method. The deserializing hook called on the object during deserialization. -=head1 AUTHORS +=head1 FURTHER QUESTIONS? -David Kamholz +Check the list of L. -=head1 LICENSE +=head1 COPYRIGHT AND LICENSE -You may distribute this code under the same terms as Perl itself. - -=cut +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L.