Skip to content

QA

QA #229

Triggered via push December 16, 2025 16:25
Status Success
Total duration 27s
Artifacts

php.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
mutation: src/Value/ObjectVal.php#L20
Escaped Mutant for Mutator "CastArray": @@ @@ public function getRawValue(): \stdClass { $return = new \stdClass(); - foreach ((array) $this->value as $key => $value) { + foreach ($this->value as $key => $value) { \assert($value instanceof Value); $return->{$key} = $value->getRawValue(); }
mutation: src/Parser.php#L257
Escaped Mutant for Mutator "DoWhile": @@ @@ default: throw new ExpectedSelectionSetBody($this->tokenizer->getNext()->getLocation(), $this->tokenizer->getCurrent()->getType()); } - } while ($this->tokenizer->peekNext()->getType() !== TokenType::CUR_C); + } while (false); $this->tokenizer->getNext(); return new FieldSet($fields, new FragmentSpreadSet($fragments)); }