| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function register(Container $container) |
|
| 16 | { |
||
| 17 | 1 | $container['console.name'] = 'chubbyphp-api-slim-skeleton'; |
|
| 18 | 1 | $container['console.version'] = '1.0'; |
|
| 19 | |||
| 20 | 1 | $container['console.helpers'] = function () { |
|
| 21 | 1 | return []; |
|
| 22 | }; |
||
| 23 | |||
| 24 | 1 | $container['console.commands'] = function () { |
|
| 25 | 1 | return []; |
|
| 26 | }; |
||
| 27 | 1 | } |
|
| 28 | } |
||
| 29 |