Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function load(ServiceContainer $container, array $params) |
||
17 | { |
||
18 | $container->define('code_generator.generators.specification_method', function (ServiceContainer $c) { |
||
19 | return new SpecificationMethodGenerator( |
||
20 | $c->get('console.io'), |
||
21 | $c->get('code_generator.templates') |
||
22 | ); |
||
23 | }, ['code_generator.generators']); |
||
24 | |||
25 | $container->define('console.commands.exemplify', function () { |
||
26 | return new ExemplifyCommand(); |
||
27 | }, ['console.commands']); |
||
28 | } |
||
29 | } |
||
30 |