Skip to content

build

build #157

Triggered via schedule September 8, 2024 16:12
Status Success
Total duration 54s
Artifacts

build.yml

on: schedule
Code Style (phpcs)
8s
Code Style (phpcs)
Code Style (php-cs-fixer)
8s
Code Style (php-cs-fixer)
Code analysis (phpstan)
23s
Code analysis (phpstan)
Code analysis (psalm)
13s
Code analysis (psalm)
Mutation testing analysis
34s
Mutation testing analysis
Matrix: tests
Fit to window
Zoom out
Zoom in

Annotations

14 warnings
Code Style (phpcs)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Code Style (php-cs-fixer)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Code analysis (psalm)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 8.2 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 8.1 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 7.3 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 8.3 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 7.4 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Tests PHP 8.0 (phpunit)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Code analysis (phpstan)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Mutation testing analysis
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
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) {