We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 216a89f commit d87084aCopy full SHA for d87084a
1 file changed
README.md
@@ -314,7 +314,7 @@ use SimPod\ClickHouseClient\Param\ParamValueConverterRegistry;
314
use DateTimeInterface;
315
316
$paramValueConverterRegistry = new ParamValueConverterRegistry([
317
- 'datetime' => static fn (mixed $v) => $v instanceof DateTimeInterface
+ 'datetime' => static fn (mixed $v, mixed ...$unused) => $v instanceof DateTimeInterface
318
? $v->format('c')
319
: throw UnsupportedParamValue::type($v),
320
]);
0 commit comments