build #112
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
build.yml
on: schedule
Code Style (phpcs)
7s
Code Style (php-cs-fixer)
21s
Code analysis (phpstan)
20s
Code analysis (psalm)
12s
Mutation testing analysis
28s
Matrix: tests
Annotations
10 warnings
Tests PHP 8.1 (phpunit)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests PHP 7.3 (phpunit)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Code analysis (psalm)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests PHP 8.0 (phpunit)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests PHP 7.4 (phpunit)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Code analysis (phpstan)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Mutation testing analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Mutation testing analysis:
src/DiscoverExtractor.php#L46
Escaped Mutant for Mutator "ProtectedVisibility":
--- Original
+++ New
@@ @@
{
return $this->expressions;
}
- protected function findByUniqueName(string $uniqueName) : ?ExpressionExtractorInterface
+ private function findByUniqueName(string $uniqueName) : ?ExpressionExtractorInterface
{
foreach ($this->expressions as $expression) {
if ($uniqueName === $expression->uniqueName()) {
|
Mutation testing analysis:
src/DiscoverExtractor.php#L56
Escaped Mutant for Mutator "ProtectedVisibility":
--- Original
+++ New
@@ @@
}
return null;
}
- protected function findMatch(DOMDocument $document) : ?ExpressionExtractorInterface
+ private function findMatch(DOMDocument $document) : ?ExpressionExtractorInterface
{
foreach ($this->expressions as $expression) {
if ($expression->matches($document)) {
|
Mutation testing analysis:
src/DiscoverExtractor.php#L66
Escaped Mutant for Mutator "ProtectedVisibility":
--- Original
+++ New
@@ @@
}
return null;
}
- protected function getFirstMatch(DOMDocument $document) : ExpressionExtractorInterface
+ private function getFirstMatch(DOMDocument $document) : ExpressionExtractorInterface
{
$discovered = $this->findMatch($document);
if (null === $discovered) {
|