Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1.008 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | 1 | public function configure() { |
|
37 | 1 | $this |
|
38 | 1 | ->setName("analyze") |
|
39 | ->setDescription |
||
40 | 1 | ("Runs an analysis" |
|
41 | 1 | ) |
|
42 | ->setHelp |
||
43 | 1 | ("This command will index a codebase and analyze it, according to " |
|
44 | ."the given configs." |
||
45 | 1 | ) |
|
46 | ->addArgument |
||
47 | 1 | ( "configs" |
|
48 | 1 | , InputArgument::IS_ARRAY |
|
49 | 1 | , "Give paths to config files, separated by spaces." |
|
50 | 1 | ); |
|
51 | 1 | } |
|
52 | |||
61 |