build #180
build.yml
on: schedule
Code Style (phpcs)
6s
Code Style (php-cs-fixer)
8s
Code analysis (phpstan)
13s
Code analysis (psalm)
13s
Mutation testing analysis
26s
Matrix: tests
Annotations
14 warnings
Code Style (phpcs)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Code Style (php-cs-fixer)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 8.0 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 7.4 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 8.1 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 7.3 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 8.3 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Code analysis (psalm)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Code analysis (phpstan)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests PHP 8.2 (phpunit)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Mutation testing analysis
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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) {
|