Skip to content

build

build #166

Triggered via schedule October 6, 2024 16:11
Status Success
Total duration 1m 17s
Artifacts

build.yml

on: schedule
Code Style (phpcs)
7s
Code Style (phpcs)
Code Style (php-cs-fixer)
8s
Code Style (php-cs-fixer)
Code analysis (phpstan)
17s
Code analysis (phpstan)
Code analysis (psalm)
12s
Code analysis (psalm)
Mutation testing analysis
33s
Mutation testing analysis
Matrix: tests
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
Mutation testing analysis: src/DiscoverExtractor.php#L46
Escaped Mutant for Mutator "ProtectedVisibility": @@ @@ { return $this->extractors; } - protected function findByUniqueName(string $uniqueName): ?ExpressionExtractorInterface + private function findByUniqueName(string $uniqueName): ?ExpressionExtractorInterface { foreach ($this->extractors as $extractor) { if ($uniqueName === $extractor->uniqueName()) {
Mutation testing analysis: src/DiscoverExtractor.php#L56
Escaped Mutant for Mutator "ProtectedVisibility": @@ @@ } return null; } - protected function findMatch(DOMDocument $document): ?ExpressionExtractorInterface + private function findMatch(DOMDocument $document): ?ExpressionExtractorInterface { foreach ($this->extractors as $extractor) { if ($extractor->matches($document)) {
Mutation testing analysis: src/DiscoverExtractor.php#L66
Escaped Mutant for Mutator "ProtectedVisibility": @@ @@ } return null; } - protected function getFirstMatch(DOMDocument $document): ExpressionExtractorInterface + private function getFirstMatch(DOMDocument $document): ExpressionExtractorInterface { $discovered = $this->findMatch($document); if (null === $discovered) {