Skip to content

Use default FUNDING and ISSUE_TEMPLATE #532

Use default FUNDING and ISSUE_TEMPLATE

Use default FUNDING and ISSUE_TEMPLATE #532

Triggered via pull request December 6, 2025 22:10
Status Failure
Total duration 1h 10m 13s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

1 error and 4 warnings
mutation / PHP 8.3-ubuntu-latest
Process completed with exit code 1.
mutation / PHP 8.3-ubuntu-latest: src/ItemsStorage.php#L73
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ public function removeChildren(string $parentName): void { if (!$this->hasChildren($parentName)) { - return; + } parent::removeChildren($parentName); $this->save();
mutation / PHP 8.3-ubuntu-latest: src/ItemsStorage.php#L62
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ public function removeChild(string $parentName, string $childName): void { if (!$this->hasDirectChild($parentName, $childName)) { - return; + } parent::removeChild($parentName, $childName); $this->save();
mutation / PHP 8.3-ubuntu-latest: src/ConcurrentStorageTrait.php#L27
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ return; } if ($this->currentFileUpdatedAt === $fileUpdatedAt) { - return; + } $storage->load(); } }
mutation / PHP 8.3-ubuntu-latest: src/AssignmentsStorage.php#L43
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ public function remove(string $itemName, string $userId): void { if (!$this->exists($itemName, $userId)) { - return; + } parent::remove($itemName, $userId); $this->save();