Skip to content

Merge pull request #21 from eclipxe13/maintenance #160

Merge pull request #21 from eclipxe13/maintenance

Merge pull request #21 from eclipxe13/maintenance #160

Triggered via push September 9, 2024 21:03
Status Success
Total duration 45s
Artifacts

build.yml

on: push
Code Style (phpcs)
8s
Code Style (phpcs)
Code Style (php-cs-fixer)
19s
Code Style (php-cs-fixer)
Code analysis (phpstan)
22s
Code analysis (phpstan)
Code analysis (psalm)
13s
Code analysis (psalm)
Mutation testing analysis
34s
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) {