Skip to content

⬆️ Bump the composer group with 5 updates #641

⬆️ Bump the composer group with 5 updates

⬆️ Bump the composer group with 5 updates #641

Triggered via pull request November 1, 2025 09:02
Status Success
Total duration 1m 11s
Artifacts

continuous_integration.yml

on: pull_request
continuous-integration
1m 7s
continuous-integration
Fit to window
Zoom out
Zoom in

Annotations

7 warnings
continuous-integration: src/NormalizeNodeVisitor.php#L321
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } elseif ($node instanceof Int_) { $this->normalizeCastInt($node); } elseif ($node instanceof CastString_) { - $this->normalizeCastString($node); + } elseif ($node instanceof ClassMethod) { $this->replaceMethodName($node); } elseif ($node instanceof StaticCall) {
continuous-integration: src/NormalizeNodeVisitor.php#L319
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } elseif ($node instanceof Bool_) { $this->normalizeCastBool($node); } elseif ($node instanceof Int_) { - $this->normalizeCastInt($node); + } elseif ($node instanceof CastString_) { $this->normalizeCastString($node); } elseif ($node instanceof ClassMethod) {
continuous-integration: src/NormalizeNodeVisitor.php#L317
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } elseif ($node instanceof Double) { $this->normalizeCastDouble($node); } elseif ($node instanceof Bool_) { - $this->normalizeCastBool($node); + } elseif ($node instanceof Int_) { $this->normalizeCastInt($node); } elseif ($node instanceof CastString_) {
continuous-integration: src/NormalizeNodeVisitor.php#L277
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ */ private function normalizeCastString(CastString_ $node): void { - $node->setAttribute('kind', CastString_::KIND_STRING); + } /** * TRANSFORM: remove class const type
continuous-integration: src/NormalizeNodeVisitor.php#L269
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ */ private function normalizeCastInt(Int_ $node): void { - $node->setAttribute('kind', Int_::KIND_INT); + } /** * TRANSFORM: `(binary)` is an alias of the `(string)` cast
continuous-integration: src/NormalizeNodeVisitor.php#L261
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ */ private function normalizeCastBool(Bool_ $node): void { - $node->setAttribute('kind', Bool_::KIND_BOOL); + } /** * TRANSFORM: `(integer)` is an alias of the `(int)` cast
continuous-integration: src/Application.php#L29
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } protected function configure(): void { - parent::configure(); + $this->setVersion('1.0.0'); $this->addArgument('exercise-slug', InputArgument::REQUIRED, 'Slug of the exercise'); $this->addArgument('solution-dir', InputArgument::REQUIRED, 'Directory of the solution');