my $rel_obj = $self->result_source->relationship_info($rel);
$self->throw_exception(
- "search_related: result source '" . $self->_source_handle->source_monkier .
+ "search_related: result source '" . $self->_source_handle->source_moniker .
"' has no such relationship $rel")
unless $rel_obj;
use base qw/DBIx::Class/;
use overload
- q/""/ => sub { __PACKAGE__ . ":" . shift->source_monkier; },
+ q/""/ => sub { __PACKAGE__ . ":" . shift->source_moniker; },
fallback => 1;
-__PACKAGE__->mk_group_accessors('simple' => qw/schema source_monkier/);
+__PACKAGE__->mk_group_accessors('simple' => qw/schema source_moniker/);
=head1 NAME
=head2 resolve
-Resolve the monkier into the actual ResultSource object
+Resolve the moniker into the actual ResultSource object
=cut
-sub resolve { return $_[0]->schema->source($_[0]->source_monkier) }
+sub resolve { return $_[0]->schema->source($_[0]->source_moniker) }
sub STORABLE_freeze {
my ($self, $cloning) = @_;