@@ -365,9 +365,14 @@ private function getCriteriaCondition(array $criteria): array
365
365
continue ;
366
366
}
367
367
368
- $ columns [] = $ columnName ;
369
- $ values [] = $ value ;
370
- $ conditions [] = $ columnName . ' = ? ' ;
368
+ if (is_array ($ value )) {
369
+ $ conditions [] = $ columnName . ' IN (?) ' ;
370
+ } else {
371
+ $ conditions [] = $ columnName . ' = ? ' ;
372
+ }
373
+
374
+ $ columns [] = $ columnName ;
375
+ $ values [] = $ value ;
371
376
}
372
377
373
378
return [$ columns , $ values , $ conditions ];
@@ -378,8 +383,8 @@ private function getCriteriaCondition(array $criteria): array
378
383
*
379
384
* Table expression and columns are not escaped and are not safe for user-input.
380
385
*
381
- * @param array<string, mixed> $criteria
382
- * @param array<int<0,max>, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
386
+ * @param array<string, mixed> $criteria
387
+ * @param array<int<0,max>, string|ParameterType|ArrayParameterType| Type>|array<string, string|ArrayParameterType |ParameterType|Type> $types
383
388
*
384
389
* @return int|numeric-string The number of affected rows.
385
390
*
@@ -442,9 +447,9 @@ public function getTransactionIsolation(): TransactionIsolationLevel
442
447
*
443
448
* Table expression and columns are not escaped and are not safe for user-input.
444
449
*
445
- * @param array<string, mixed> $data
446
- * @param array<string, mixed> $criteria
447
- * @param array<int<0,max>, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
450
+ * @param array<string, mixed> $data
451
+ * @param array<string, mixed> $criteria
452
+ * @param array<int<0,max>, string|ParameterType|ArrayParameterType| Type>|array<string, string|ParameterType|ArrayParameterType |Type> $types
448
453
*
449
454
* @return int|numeric-string The number of affected rows.
450
455
*
@@ -518,10 +523,10 @@ public function insert(string $table, array $data, array $types = []): int|strin
518
523
/**
519
524
* Extract ordered type list from an ordered column list and type map.
520
525
*
521
- * @param array<int, string> $columns
522
- * @param array<int, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
526
+ * @param array<int, string> $columns
527
+ * @param array<int, string|ParameterType|ArrayParameterType| Type>|array<string, string|ParameterType|ArrayParameterType |Type> $types
523
528
*
524
- * @return array<int<0, max>, string|ParameterType|Type>
529
+ * @return array<int<0, max>, string|ParameterType|ArrayParameterType| Type>
525
530
*/
526
531
private function extractTypeValues (array $ columns , array $ types ): array
527
532
{
0 commit comments