Skip to content

chore(deps): update dependency infection/infection to ^0.29.0 #1404

chore(deps): update dependency infection/infection to ^0.29.0

chore(deps): update dependency infection/infection to ^0.29.0 #1404

Triggered via push May 28, 2024 03:29
Status Success
Total duration 56s
Artifacts

infection.yml

on: push
Infection
48s
Infection
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
Infection: src/Client/PsrClickHouseClient.php#L62
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function executeQueryWithParams(string $query, array $params, array $settings = []): void { - $this->executeRequest($this->sqlFactory->createWithParameters($query, $params), params: $params, settings: $settings); + } public function select(string $query, Format $outputFormat, array $settings = []): Output {
Infection: src/Sql/ValueFormatter.php#L99
Escaped Mutant for Mutator "UnwrapArrayMap": --- Original +++ New @@ @@ throw UnsupportedParamValue::value($value); } $firstValue = $value[array_key_first($value)]; - $mapper = is_array($firstValue) ? fn($value): string => sprintf('(%s)', implode(',', array_map(fn($val) => $this->format($val), $value))) : fn($value): string => ($value === null) ? 'NULL' : $this->format($value); + $mapper = is_array($firstValue) ? fn($value): string => sprintf('(%s)', implode(',', $value)) : fn($value): string => ($value === null) ? 'NULL' : $this->format($value); return implode(',', array_map($mapper, $value)); } return $this->formatArray($value);