build #175
Annotations
4 warnings
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
infection:
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()) {
|
infection:
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)) {
|
infection:
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) {
|
Loading