2 DBIx::Class::CDBICompat::Relationship;
7 use DBIx::Class::_Util 'quote_sub';
11 DBIx::Class::CDBICompat::Relationship - Emulate the Class::DBI::Relationship object returned from meta_info()
15 Emulate the Class::DBI::Relationship object returned from C<meta_info()>.
21 class => 'self_class',
22 accessor => 'accessor',
23 foreign_class => 'class',
27 quote_sub __PACKAGE__ . "::$_" => "\$_[0]->{$method2key{$_}}"
31 my($class, $args) = @_;
33 return bless $args, $class;
36 =head1 FURTHER QUESTIONS?
38 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
40 =head1 COPYRIGHT AND LICENSE
42 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
43 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
44 redistribute it and/or modify it under the same terms as the
45 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.