database icon indicating copy to clipboard operation
database copied to clipboard

Update `Utopia\Database\Query::getByType()` to not be variadic

Open stnguyen90 opened this issue 3 years ago • 0 comments

Variadic functions can be confusing. It's much clearer to use arrays instead:

-    public static function getByType(array $queries, string ...$types): array
+    public static function getByType(array $queries, array $types): array

stnguyen90 avatar Sep 22 '22 23:09 stnguyen90