Skip to content

Update dependency phpstan/phpstan-strict-rules to ^1.6.1 #178

Update dependency phpstan/phpstan-strict-rules to ^1.6.1

Update dependency phpstan/phpstan-strict-rules to ^1.6.1 #178

Triggered via push September 23, 2024 10:52
Status Success
Total duration 7m 58s
Artifacts

ci.yml

on: push
Matrix: Benchmarks
Matrix: Coding Standards
Matrix: Lint composer.json
Matrix: Static Analysis
Matrix: Tests
Fit to window
Zoom out
Zoom in

Annotations

25 warnings
Lint composer.json (8.2)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, CsvWriterBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Static Analysis (8.2)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, CsvReaderBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Coding Standards (8.2)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, XlsxReaderInlineBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, XlsxReaderSharedBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, OdsWriterBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, OdsReaderBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, XlsxWriterInlineBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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/
Benchmarks (8.2, XlsxWriterSharedBench)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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 (ubuntu-latest, 8.2, none)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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 (ubuntu-latest, 8.1, none)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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 (windows-latest, 8.2, none)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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 (ubuntu-latest, 8.3, pcov)
The following actions use a deprecated Node.js version and will be forced to run on node20: 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 (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "Concat": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return $rgbColor . 'FF'; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return 'FF'; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return $rgbColor; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L141
Escaped Mutant for Mutator "FalseValue": @@ @@ public function setBorder(Border $border): self { $this->border = $border; - $this->isEmpty = false; + $this->isEmpty = true; return $this; } public function isFontBold(): bool
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L154
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontBold(): self { $this->fontBold = true; - $this->hasSetFontBold = true; + $this->hasSetFontBold = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L155
Escaped Mutant for Mutator "TrueValue": @@ @@ { $this->fontBold = true; $this->hasSetFontBold = true; - $this->shouldApplyFont = true; + $this->shouldApplyFont = false; $this->isEmpty = false; return $this; }
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L174
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontItalic(): self { $this->fontItalic = true; - $this->hasSetFontItalic = true; + $this->hasSetFontItalic = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L175
Escaped Mutant for Mutator "TrueValue": @@ @@ { $this->fontItalic = true; $this->hasSetFontItalic = true; - $this->shouldApplyFont = true; + $this->shouldApplyFont = false; $this->isEmpty = false; return $this; }
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L176
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->fontItalic = true; $this->hasSetFontItalic = true; $this->shouldApplyFont = true; - $this->isEmpty = false; + $this->isEmpty = true; return $this; } public function hasSetFontItalic(): bool
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L194
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontUnderline(): self { $this->fontUnderline = true; - $this->hasSetFontUnderline = true; + $this->hasSetFontUnderline = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;