X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSerialize%2FStorable.pm;h=d0299cdf755b81fbb5581144c390e62a5a8ac453;hb=f064a2abb15858bb39a141ad50391d4191988d2c;hp=b7bba433f8c12efac5c152f7a8fedc76dc68e9f5;hpb=9c1700e39e6ee002d9294c0d988882d1f0d7d86f;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Serialize/Storable.pm b/lib/DBIx/Class/Serialize/Storable.pm index b7bba43..d0299cd 100644 --- a/lib/DBIx/Class/Serialize/Storable.pm +++ b/lib/DBIx/Class/Serialize/Storable.pm @@ -1,9 +1,9 @@ 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 ' @@ -53,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 @@ -73,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.