overridden WithParameters defaults
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / Service / WithParameters.pm
1 package Catalyst::IOC::Service::WithParameters;
2 use Moose::Role;
3
4 with 'Bread::Board::Service',
5      'Bread::Board::Service::WithParameters';
6
7 sub _build_parameters {
8     return {
9         accept_context_args => {
10             isa      => 'ArrayRef|Undef',
11             required => 0,
12             default  => undef,
13         }
14     };
15 }
16
17 no Moose::Role;
18 1;
19
20 __END__
21
22 =pod
23
24 =head1 NAME
25
26 Catalyst::IOC::Service::WithParameters
27
28 =head1 DESCRIPTION
29
30 =head1 METHODS
31
32 =head1 AUTHORS
33
34 Catalyst Contributors, see Catalyst.pm
35
36 =head1 COPYRIGHT
37
38 This library is free software. You can redistribute it and/or modify it under
39 the same terms as Perl itself.
40
41 =cut