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