*/ public function matching(User $user, string $field, string $operator, string $token, ?int $limit = null): Collection; /** * Count uncategorized transactions matching ANY of the given conditions (OR). * * @param list $conditions */ public function countMatchingAny(User $user, array $conditions): int; /** * The uncategorized transactions matching ANY of the given conditions (OR). * * @param list $conditions * @return Collection */ public function matchingAny(User $user, array $conditions, ?int $limit = null): Collection; }