Skip to content

build

build #172

Triggered via schedule November 17, 2024 16:10
Status Success
Total duration 46s
Artifacts

build.yml

on: schedule
Code Style (phpcs)
9s
Code Style (phpcs)
Code Style (php-cs-fixer)
10s
Code Style (php-cs-fixer)
Code analysis (phpstan)
14s
Code analysis (phpstan)
Code analysis (psalm)
13s
Code analysis (psalm)
Mutation testing analysis
36s
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) {