Release 0.6.1 #9
Annotations
3 warnings
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Run Infection:
src/Query/LazyQuery.php#L36
Escaped Mutant for Mutator "AssignCoalesce":
--- Original
+++ New
@@ @@
}
private function getLoadedQuery() : QueryInterface
{
- return $this->loadedQuery ??= $this->loadQuery();
+ return $this->loadedQuery = $this->loadQuery();
}
private function loadQuery() : QueryInterface
{
|
Run Infection:
src/Query/Query.php#L29
Escaped Mutant for Mutator "UnwrapArrayValues":
--- Original
+++ New
@@ @@
private readonly array $operations;
public function __construct(private readonly ValueEncoderInterface $encoder, private readonly ValueDecoderInterface $decoder, OperationInterface ...$operations)
{
- $this->operations = array_values($operations);
+ $this->operations = $operations;
}
public function __invoke(NodeValueInterface $data, PointerProcessorInterface $pointerProcessor) : ResultInterface
{
|
The logs for this run have expired and are no longer available.
Loading