X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultSourceProxy%2FTable.pm;h=b2921e631adfb1c299aa57ebbbd4a7ea7da11deb;hb=75d079145a507a0e5ff89b2676d383f4fd1a5511;hp=1c93aed9c52d971c35ea3dc669035c105c708221;hpb=884559b13fe244d3e446d127e9fd21ea8d7c6eb3;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/ResultSourceProxy/Table.pm b/lib/DBIx/Class/ResultSourceProxy/Table.pm index 1c93aed..b2921e6 100644 --- a/lib/DBIx/Class/ResultSourceProxy/Table.pm +++ b/lib/DBIx/Class/ResultSourceProxy/Table.pm @@ -10,9 +10,9 @@ __PACKAGE__->mk_group_accessors('component_class' => 'table_class'); __PACKAGE__->table_class('DBIx::Class::ResultSource::Table'); __PACKAGE__->mk_classdata('table_alias'); # FIXME: Doesn't actually do - # anything yet! + # anything yet! -=head1 NAME +=head1 NAME DBIx::Class::ResultSourceProxy::Table - provides a classdata table object and method proxies @@ -47,7 +47,7 @@ sub table { unless (ref $table) { $table = $class->table_class->new({ $class->can('result_source_instance') ? - %{$class->result_source_instance} : (), + %{$class->result_source_instance} : (), name => $table, result_class => $class, }); @@ -73,7 +73,7 @@ Returns 1 if the class has a column of this name, 0 otherwise. Returns the column metadata hashref for a column. For a description of the various types of column data in this hashref, see -L +L =cut