Skip to content

test: cover uri query composition #1215

test: cover uri query composition

test: cover uri query composition #1215

Triggered via pull request October 16, 2023 11:34
@simPodsimPod
synchronize #212
covert
Status Success
Total duration 1m 48s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

infection.yml

on: pull_request
Infection
49s
Infection
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
Infection: src/Logger/LoggerChain.php#L17
Escaped Mutant for Mutator "UnwrapArrayFilter": --- Original +++ New @@ @@ /** @param SqlLogger[] $loggers */ public function __construct(array $loggers = []) { - $this->loggers = array_filter($loggers, static fn(SqlLogger $logger): bool => !$logger instanceof self); + $this->loggers = $loggers; } public function startQuery(string $id, string $sql) : void {
Infection: src/Logger/LoggerChain.php#L19
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ /** @param SqlLogger[] $loggers */ public function __construct(array $loggers = []) { - $this->loggers = array_filter($loggers, static fn(SqlLogger $logger): bool => !$logger instanceof self); + $this->loggers = array_filter($loggers, static fn(SqlLogger $logger): bool => !false); } public function startQuery(string $id, string $sql) : void {