summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Bread/Board/Declare.pm3
-rw-r--r--lib/Bread/Board/Declare/Meta/Role/Attribute.pm25
2 files changed, 19 insertions, 9 deletions
diff --git a/lib/Bread/Board/Declare.pm b/lib/Bread/Board/Declare.pm
index 5480c77..a0a3789 100644
--- a/lib/Bread/Board/Declare.pm
+++ b/lib/Bread/Board/Declare.pm
@@ -75,7 +75,8 @@ corresponding to the type constraint.
=item
-Otherwise, no service is created.
+Otherwise, a BlockInjection service is created which throws an exception. This allows services to be created for the sole purpose of being set through the attribute, without requiring a default to be specified. Note that
+C<< required => 1 >> is still valid on these attributes.
=back
diff --git a/lib/Bread/Board/Declare/Meta/Role/Attribute.pm b/lib/Bread/Board/Declare/Meta/Role/Attribute.pm
index 19ba8f7..23434e4 100644
--- a/lib/Bread/Board/Declare/Meta/Role/Attribute.pm
+++ b/lib/Bread/Board/Declare/Meta/Role/Attribute.pm
@@ -127,6 +127,8 @@ after attach_to_class => sub {
: ()),
);
+ my $tc = $self->has_type_constraint ? $self->type_constraint : undef;
+
my $service;
if ($self->has_block) {
$service = Bread::Board::Declare::BlockInjection->new(
@@ -140,14 +142,21 @@ after attach_to_class => sub {
value => $self->literal_value,
);
}
- elsif ($self->has_type_constraint) {
- my $tc = $self->type_constraint;
- if ($tc->isa('Moose::Meta::TypeConstraint::Class')) {
- $service = Bread::Board::Declare::ConstructorInjection->new(
- %params,
- class => $tc->class,
- );
- }
+ elsif ($tc && $tc->isa('Moose::Meta::TypeConstraint::Class')) {
+ $service = Bread::Board::Declare::ConstructorInjection->new(
+ %params,
+ class => $tc->class,
+ );
+ }
+ else {
+ $service = Bread::Board::Declare::BlockInjection->new(
+ %params,
+ block => sub {
+ die "Attribute " . $self->name . " did not specify a service."
+ . " It must be given a value through the constructor or"
+ . " writer method before it can be resolved."
+ },
+ );
}
$self->associated_service($service) if $service;