Skip to content

Update github/codeql-action digest to db488dd #828

Update github/codeql-action digest to db488dd

Update github/codeql-action digest to db488dd #828

Triggered via push August 23, 2026 04:03
Status Failure
Total duration 3m 5s
Artifacts
ci  /  Generate job matrix
14s
ci / Generate job matrix
Check for missing dependencies
16s
Check for missing dependencies
Mutation Tests
1m 24s
Mutation Tests
Check for Unused Dependencies
20s
Check for Unused Dependencies
Psalm Security Report
3m 0s
Psalm Security Report
Rector on Default PHP
25s
Rector on Default PHP
Matrix: ci / QA Checks
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 11 warnings
ci / QA Checks (PHPCodeSniffer [8.2, locked], ubuntu-latest, laminas/laminas-continuous-integration-ac...
The "https://api.github.com/repos/amphp/amp/zipball/73c38b323ff8d790abf0f76c56fcc892bda4111a" file could not be downloaded (HTTP/2 504 )
ci / QA Checks (PHPUnit [8.2, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
The "https://api.github.com/repos/myclabs/DeepCopy/zipball/8680aa248f8e07bc8fb43f56f0f5fc77a0c96aae" file could not be downloaded (HTTP/2 504 )
ci / QA Checks (MkDocs Linting [8.2, locked], ubuntu-latest, laminas/laminas-continuous-integration-ac...
The "https://api.github.com/repos/myclabs/DeepCopy/zipball/8680aa248f8e07bc8fb43f56f0f5fc77a0c96aae" file could not be downloaded (HTTP/2 504 )
ci / QA Checks (PHPUnit [8.5, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
The "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/bb899c1db0aa8127dc3afe8cda4a67eb24915f8d" file could not be downloaded (HTTP/2 504 )
Mutation Tests: src/Paginator.php#L244
Escaped Mutant for Mutator "DecrementInteger": @@ @@ * * @return $this */ - public function setItemCountPerPage(int $itemCountPerPage = -1): self + public function setItemCountPerPage(int $itemCountPerPage = -2): self { if ($itemCountPerPage < 1) { $this->itemCountPerPage = max(1, $this->getTotalItemCount());
Mutation Tests: src/Paginator.php#L222
Escaped Mutant for Mutator "UnwrapArrayValues": @@ @@ if ($itemNumber > $itemCount) { throw new Exception\InvalidArgumentException("Page {$pageNumber} does not contain item number {$itemNumber}"); } - $page = $page instanceof Traversable ? iterator_to_array($page, false) : array_values($page); + $page = $page instanceof Traversable ? iterator_to_array($page, false) : $page; return $page[$itemNumber - 1]; } /**
Mutation Tests: src/Paginator.php#L210
Escaped Mutant for Mutator "LessThanOrEqualTo": @@ @@ if ($itemCount === 0) { throw new Exception\InvalidArgumentException('Page ' . $pageNumber . ' does not exist'); } - if ($itemNumber <= 0) { + if ($itemNumber < 0) { $itemNumber = $itemCount + 1 + $itemNumber; } $itemNumber = $this->normalizeItemNumber($itemNumber);
Mutation Tests: src/Paginator.php#L200
Escaped Mutant for Mutator "Plus": @@ @@ if ($pageNumber === null) { $pageNumber = $this->getCurrentPageNumber(); } elseif ($pageNumber < 0) { - $pageNumber = $this->count() + 1 + $pageNumber; + $pageNumber = $this->count() + 1 - $pageNumber; } $page = $this->getItemsByPage($pageNumber); $itemCount = $this->getItemCount($page);
Mutation Tests: src/Paginator.php#L200
Escaped Mutant for Mutator "IncrementInteger": @@ @@ if ($pageNumber === null) { $pageNumber = $this->getCurrentPageNumber(); } elseif ($pageNumber < 0) { - $pageNumber = $this->count() + 1 + $pageNumber; + $pageNumber = $this->count() + 2 + $pageNumber; } $page = $this->getItemsByPage($pageNumber); $itemCount = $this->getItemCount($page);
Mutation Tests: src/Paginator.php#L199
Escaped Mutant for Mutator "LessThan": @@ @@ { if ($pageNumber === null) { $pageNumber = $this->getCurrentPageNumber(); - } elseif ($pageNumber < 0) { + } elseif ($pageNumber <= 0) { $pageNumber = $this->count() + 1 + $pageNumber; } $page = $this->getItemsByPage($pageNumber);
Mutation Tests: src/Adapter/NullFill.php#L31
Escaped Mutant for Mutator "ReturnRemoval": @@ @@ { $count = $this->count(); if ($offset >= $count) { - return []; + } $remainItemCount = $count - $offset; $currentItemCount = min($remainItemCount, $itemCountPerPage);
Mutation Tests: src/Adapter/NullFill.php#L30
Escaped Mutant for Mutator "GreaterThanOrEqualTo": @@ @@ public function getItems(int $offset, int $itemCountPerPage): iterable { $count = $this->count(); - if ($offset >= $count) { + if ($offset > $count) { return []; } $remainItemCount = $count - $offset;
Mutation Tests: src/Adapter/NullFill.php#L18
Escaped Mutant for Mutator "IncrementInteger": @@ @@ /** * @PARAM int $count Total item count (Optional) */ - public function __construct(private int $count = 0) + public function __construct(private int $count = 1) { } /**
Mutation Tests: src/Adapter/NullFill.php#L18
Escaped Mutant for Mutator "DecrementInteger": @@ @@ /** * @PARAM int $count Total item count (Optional) */ - public function __construct(private int $count = 0) + public function __construct(private int $count = -1) { } /**
Psalm Security Report
Timed out waiting for analysis to finish processing. Continuing.