Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
1 | <?php |
||
38 | 43 | public static function createCommands(): CommandsCollection |
|
39 | { |
||
40 | 43 | return new CommandsCollection([ |
|
41 | 43 | 'cap' => new Commands\Cap(), |
|
42 | 43 | 'config' => new Commands\Config(), |
|
43 | 43 | 'fetch' => new Commands\Fetch(), |
|
44 | 43 | 'list' => new Commands\Lst(), |
|
45 | 43 | 'nodes' => new Commands\Nodes(), |
|
46 | 43 | 'quit' => new Commands\Quit(), |
|
47 | 43 | 'version' => new Commands\Version(), |
|
48 | ]); |
||
49 | } |
||
50 | } |
||
51 |