build #166
build.yml
on: schedule
Code Style (phpcs)
7s
Code Style (php-cs-fixer)
8s
Code analysis (phpstan)
17s
Code analysis (psalm)
12s
Mutation testing analysis
33s
Matrix: tests
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) {
|