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