Created component sub-container, brought BlockInjection back
[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 'Bread::Board::Service::WithDependencies',
6      'Bread::Board::Service::WithParameters',
7      'Catalyst::IOC::Service::WithAcceptContext';
8
9 __PACKAGE__->meta->make_immutable;
10
11 no Moose; 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 Catalyst::IOC::BlockInjection
20
21 =head1 SYNOPSIS
22
23 =head1 DESCRIPTION
24
25 =head1 AUTHORS
26
27 Catalyst Contributors, see Catalyst.pm
28
29 =head1 COPYRIGHT
30
31 This library is free software. You can redistribute it and/or modify it under
32 the same terms as Perl itself.
33
34 =cut