summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/MooseX/Bread/Board/Role/Service.pm20
1 files changed, 14 insertions, 6 deletions
diff --git a/lib/MooseX/Bread/Board/Role/Service.pm b/lib/MooseX/Bread/Board/Role/Service.pm
index 8442e3a..5e06eee 100644
--- a/lib/MooseX/Bread/Board/Role/Service.pm
+++ b/lib/MooseX/Bread/Board/Role/Service.pm
@@ -12,6 +12,18 @@ around get => sub {
my $orig = shift;
my $self = shift;
+ my $container = $self->parent_container;
+
+ if ($self->associated_attribute->has_value($container)) {
+ return $self->associated_attribute->get_value($container);
+ }
+
+ return $self->$orig(@_);
+};
+
+sub parent_container {
+ my $self = shift;
+
my $container = $self;
until (!defined($container)
|| ($container->isa('Bread::Board::Container')
@@ -20,12 +32,8 @@ around get => sub {
}
die "Couldn't find associated object!" unless defined $container;
- if ($self->associated_attribute->has_value($container)) {
- return $self->associated_attribute->get_value($container);
- }
-
- return $self->$orig(@_);
-};
+ return $container;
+}
no Moose::Role;