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