@@ -110,7 +110,9 @@ public function testConvert(string $type, mixed $value, mixed $expected): void
110110 public static function providerConvert (): Generator
111111 {
112112 yield 'Array ' => ['Array(String) ' , "['foo','bar'] " , "['foo','bar'] " ];
113+ yield 'Array LC ' => ['Array(LowCardinality(String)) ' , "['foo','bar'] " , "['foo','bar'] " ];
113114 yield 'Array (array) ' => ['Array(String) ' , ['foo ' , 'bar ' ], "['foo','bar'] " ];
115+ yield 'Array Tuple ' => ['Array(Tuple(String, String)) ' , [['foo ' , 'bar ' ]], "[('foo','bar')] " ];
114116 yield 'Tuple ' => ['Tuple(String, Int8) ' , "('k',1) " , "('k',1) " ];
115117 yield 'Tuple (array) ' => ['Tuple(String, Int8) ' , ['k ' , 1 ], "('k',1) " ];
116118
@@ -250,7 +252,7 @@ public static function providerConvert(): Generator
250252 yield 'IPv6 ' => ['IPv6 ' , '2001:0000:130F:0000:0000:09C0:876A:130B ' , '2001:0:130f::9c0:876a:130b ' ];
251253 }
252254
253- public function testThrowsOnUknownType (): void
255+ public function testThrowsOnUnknownType (): void
254256 {
255257 $ registry = new ParamValueConverterRegistry ();
256258
0 commit comments