Schedule CI #229
Annotations
4 warnings
Infection (ubuntu-latest, 8.3):
src/Tools/Process/Execution/MultiProcessesExecution.php#L40
Escaped Mutant for Mutator "CastString":
@@ @@
$this->numberOfRunnedProcesses = $this->finishExecution($process, $toolName);
}
} catch (ProcessTimedOutException $th) {
- $toolName = (string) array_search($th->getProcess(), $this->processes);
+ $toolName = array_search($th->getProcess(), $this->processes);
$this->numberOfRunnedProcesses = $this->finishExecution($th->getProcess(), $toolName, $th->getMessage());
}
} while ($totalProcesses > $this->numberOfRunnedProcesses);
|
Infection (ubuntu-latest, 8.3):
src/Tools/Process/Execution/MultiProcessesExecution.php#L49
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
}
$endCommandExecution = microtime(true);
$executionTime = $this->executionTime($endCommandExecution, $startCommandExecution);
- $this->printer->line("Total Runtime: {$executionTime} seconds");
+
return $this->errors;
}
protected function addProcessToQueue(): void
|
Infection (ubuntu-latest, 8.3):
src/Tools/Process/ProcessFake.php#L116
Escaped Mutant for Mutator "Break_":
@@ @@
foreach ($tools as $tool) {
if (preg_match("%{$tool}%", $ex[0])) {
$nameTool = $tool;
- break;
+ continue;
}
}
$this->output = "\nThe tool {$nameTool} mocks an error\n";
|
Infection (ubuntu-latest, 8.3):
src/Tools/Tool/Phpstan.php#L63
Escaped Mutant for Mutator "Assignment":
@@ @@
}
switch ($option) {
case self::EXECUTABLE_PATH_OPTION:
- $command .= $this->args[self::EXECUTABLE_PATH_OPTION] . ' analyse';
+ $command = $this->args[self::EXECUTABLE_PATH_OPTION] . ' analyse';
break;
case self::PATHS:
$command .= ' ' . implode(' ', $this->args[$option]);
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
CodeCoverage
Expired
|
1.36 MB |
|
GitHooks Metrics - 01-09-2024
Expired
|
1.9 MB |
|
Infection
Expired
|
159 KB |
|
PhPMetrics
Expired
|
381 KB |
|