get_all_components is getting until we know what to do
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / BlockInjection.pm
1 package Catalyst::IOC::BlockInjection;
2 use Moose;
3 extends 'Bread::Board::BlockInjection';
4
5 with 'Catalyst::IOC::Service::WithAcceptContext',
6      'Catalyst::IOC::Service::WithParameters',
7      'Bread::Board::Service::WithDependencies';
8
9 has catalyst_component_name => (
10     is => 'ro',
11 );
12
13 __PACKAGE__->meta->make_immutable;
14
15 no Moose; 1;
16
17 __END__
18
19 =pod
20
21 =head1 NAME
22
23 Catalyst::IOC::BlockInjection
24
25 =head1 SYNOPSIS
26
27 =head1 DESCRIPTION
28
29 =head1 AUTHORS
30
31 Catalyst Contributors, see Catalyst.pm
32
33 =head1 COPYRIGHT
34
35 This library is free software. You can redistribute it and/or modify it under
36 the same terms as Perl itself.
37
38 =cut