@@ -16,7 +16,6 @@ |
||
| 16 | 16 | * Generate a new Job script to be executed under a separate PHP process |
| 17 | 17 | * |
| 18 | 18 | * @param null|string $mutantFile |
| 19 | - * @param array $args |
|
| 20 | 19 | * @param string $bootstrap |
| 21 | 20 | * @param null|string $replacingFile |
| 22 | 21 | * @return string |
@@ -10,8 +10,6 @@ |
||
| 10 | 10 | |
| 11 | 11 | namespace Humbug\Command; |
| 12 | 12 | |
| 13 | -use Humbug\Exception\FilesystemException; |
|
| 14 | -use Humbug\Console\Application; |
|
| 15 | 13 | use Symfony\Component\Console\Command\Command; |
| 16 | 14 | use Symfony\Component\Console\Input\InputInterface; |
| 17 | 15 | use Symfony\Component\Console\Input\InputOption; |
@@ -136,6 +136,9 @@ discard block |
||
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | + /** |
|
| 140 | + * @param string $sectionName |
|
| 141 | + */ |
|
| 139 | 142 | private function printSectionHeaderColor($sectionName) |
| 140 | 143 | { |
| 141 | 144 | switch ($sectionName) { |
@@ -163,7 +166,7 @@ discard block |
||
| 163 | 166 | /** |
| 164 | 167 | * @param string $class |
| 165 | 168 | * @param array $data |
| 166 | - * @param $verbosityLevel |
|
| 169 | + * @param integer $verbosityLevel |
|
| 167 | 170 | */ |
| 168 | 171 | protected function printSectionData($class, $data, $verbosityLevel) |
| 169 | 172 | { |
@@ -280,6 +283,10 @@ discard block |
||
| 280 | 283 | return $this->generateDiffString($old, $new); |
| 281 | 284 | } |
| 282 | 285 | |
| 286 | + /** |
|
| 287 | + * @param string $old |
|
| 288 | + * @param string $new |
|
| 289 | + */ |
|
| 283 | 290 | private function generateDiffString($old, $new) |
| 284 | 291 | { |
| 285 | 292 | $fromStart = strspn($old ^ $new, "\0"); |
@@ -306,8 +313,8 @@ discard block |
||
| 306 | 313 | |
| 307 | 314 | /** |
| 308 | 315 | * @param $string |
| 309 | - * @param $index |
|
| 310 | - * @return array |
|
| 316 | + * @param integer $index |
|
| 317 | + * @return string[] |
|
| 311 | 318 | */ |
| 312 | 319 | private function stringSplitByIndex($string, $index) |
| 313 | 320 | { |
@@ -14,7 +14,6 @@ |
||
| 14 | 14 | use Humbug\File\Collector as FileCollector; |
| 15 | 15 | use Humbug\File\Collection as FileCollection; |
| 16 | 16 | use Humbug\TestSuite\Mutant\Collector as ResultCollector; |
| 17 | -use Humbug\Adapter\AdapterAbstract; |
|
| 18 | 17 | use Humbug\Utility\CoverageData; |
| 19 | 18 | use Humbug\Exception\RuntimeException; |
| 20 | 19 | |