Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
30 | 732 | public function __construct() |
|
31 | { |
||
32 | 732 | parent::__construct('PHP Smart Analyzer', $this->getStringVersion()); |
|
33 | |||
34 | 732 | $this->add(new Command\CheckCommand()); |
|
35 | 732 | $this->add(new Command\DumpReferenceCommand()); |
|
36 | |||
37 | 732 | $this->issuesCollector = new IssuesCollector(); |
|
38 | 732 | $this->configuration = new Configuration(); |
|
39 | 732 | } |
|
40 | |||
88 |