We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f3a33 commit d97ae4aCopy full SHA for d97ae4a
src/Builder.php
@@ -418,6 +418,17 @@ private static function sanitize($data)
418
return $data;
419
}
420
421
+ /**
422
+ * Sanitizes values in an array
423
+ * @param array $arry: the array to sanitize
424
+ * @return array :sanitized array output
425
+ */
426
+ private static function sanitizeAV(array $arry){
427
+ return array_map(function($value){
428
+ return self::sanitize($value);
429
+ },$arry);
430
+ }
431
+
432
433
/**
434
*Validate that the table name has been provided and is a string
0 commit comments