use Google\Cloud\Firestore\FirestoreClient;
/**
* Initialize Cloud Firestore with a provided project ID.
*
* @param string $projectId Your Google Cloud Project ID
*/
function setup_client_create_with_project_id(string $projectId): void
{
// Create the Cloud Firestore client with a provided project ID.
$db = new FirestoreClient([
'projectId' => $projectId,
]);
printf('Created Cloud Firestore client with project ID: %s' . PHP_EOL, $projectId);
}