X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FCDBICompat%2FAbstractSearch.pm;h=23c009e1bc65a7f69ac8091b89dcd211a17e2b02;hb=5e0eea3522876a30453af24097507198bbbc9409;hp=c02f4f77cbc36dcb3f0b34f0b7d241746807fd45;hpb=b24d86a1fbeb89083bc2eeeeb286d590ffea702a;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/CDBICompat/AbstractSearch.pm b/lib/DBIx/Class/CDBICompat/AbstractSearch.pm index c02f4f7..23c009e 100644 --- a/lib/DBIx/Class/CDBICompat/AbstractSearch.pm +++ b/lib/DBIx/Class/CDBICompat/AbstractSearch.pm @@ -4,13 +4,15 @@ package # hide form PAUSE use strict; use warnings; +use base 'DBIx::Class'; + =head1 NAME DBIx::Class::CDBICompat::AbstractSearch - Emulates Class::DBI::AbstractSearch =head1 SYNOPSIS -See DBIx::Class::CDBICompat for directions for use. +See DBIx::Class::CDBICompat for usage directions. =head1 DESCRIPTION @@ -34,4 +36,17 @@ sub search_where { return $class->resultset_instance->search($where, $attr); } +=head1 FURTHER QUESTIONS? + +Check the list of L. + +=head1 COPYRIGHT AND LICENSE + +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L. + +=cut + 1;