The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package
DBIx::Class::CDBICompat::Relationship;
use strict;
=head1 NAME
DBIx::Class::CDBICompat::Relationship
=head1 DESCRIPTION
Emulate the Class::DBI::Relationship object returned from C<meta_info()>.
=cut
my %method2key = (
name => 'type',
class => 'self_class',
accessor => 'accessor',
foreign_class => 'class',
args => 'args',
);
sub new {
my($class, $args) = @_;
return bless $args, $class;
}
for my $method (keys %method2key) {
my $key = $method2key{$method};
my $code = sub {
$_[0]->{$key};
};
no strict 'refs';
*{$method} = $code;
}
1;