| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 1 | public static function createApplication() |
|
| 20 | { |
||
| 21 | 1 | $application = new Application('Paraunit', self::VERSION); |
|
| 22 | |||
| 23 | 1 | $parallelCommand = new ParallelCommand(new ParallelConfiguration()); |
|
| 24 | 1 | $application->add($parallelCommand); |
|
| 25 | |||
| 26 | 1 | $CoverageCommand = new CoverageCommand(new ParallelCoverageConfiguration()); |
|
| 27 | 1 | $application->add($CoverageCommand); |
|
| 28 | |||
| 29 | 1 | return $application; |
|
| 30 | } |
||
| 31 | } |
||
| 32 |