Skip to content

build

build #112

Triggered via schedule November 26, 2023 16:16
Status Success
Total duration 37s
Artifacts
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 (phpcs)
Code Style (php-cs-fixer)
21s
Code Style (php-cs-fixer)
Code analysis (phpstan)
20s
Code analysis (phpstan)
Code analysis (psalm)
12s
Code analysis (psalm)
Mutation testing analysis
28s
Mutation testing analysis
Matrix: tests
Fit to window
Zoom out
Zoom in

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) {