From bcd993ba0109746152d1fadbed5608547bf06db2 Mon Sep 17 00:00:00 2001 From: Brent Shaffer <betterbrent@google.com> Date: Fri, 26 Jul 2024 14:53:43 -0700 Subject: [PATCH] chore: update region tag for query_filter_compound_multi_ineq.php (#2038) --- firestore/src/query_filter_compound_multi_ineq.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firestore/src/query_filter_compound_multi_ineq.php b/firestore/src/query_filter_compound_multi_ineq.php index 93f0d7ca1..f159870a1 100644 --- a/firestore/src/query_filter_compound_multi_ineq.php +++ b/firestore/src/query_filter_compound_multi_ineq.php @@ -37,9 +37,9 @@ function query_filter_compound_multi_ineq(string $projectId): void $db = new FirestoreClient([ 'projectId' => $projectId, ]); - $collection = $db->collection('samples/php/cities'); # [START firestore_query_filter_compound_multi_ineq] + $collection = $db->collection('samples/php/cities'); $chainedQuery = $collection ->where('population', '>', 1000000) ->where('density', '<', 10000);