From 23ef5650d08fa31b6dd707c0d79d91c8b03764f2 Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 3 Oct 2023 08:30:39 -0400 Subject: [PATCH] APIv4 - Update contact type api comment --- Civi/Api4/Household.php | 2 +- Civi/Api4/Individual.php | 2 +- Civi/Api4/Organization.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Civi/Api4/Household.php b/Civi/Api4/Household.php index 3807d0c289..260cc8852d 100644 --- a/Civi/Api4/Household.php +++ b/Civi/Api4/Household.php @@ -14,7 +14,7 @@ namespace Civi\Api4; * Contacts of type Household. * * This api is a facade for the Contact entity. - * In most ways it acts exactly like the Contact entity, but will inject [contact_type => Individual] + * In most ways it acts exactly like the Contact entity, plus it injects [contact_type => Household] * into get, create, and batch actions (however, when updating or deleting a single Contact by id, * this will transparently pass-through to the Contact entity, so don't rely on this facade to enforce * contact type for single-record-by-id write operations). diff --git a/Civi/Api4/Individual.php b/Civi/Api4/Individual.php index f72f8cde87..9b701ef936 100644 --- a/Civi/Api4/Individual.php +++ b/Civi/Api4/Individual.php @@ -14,7 +14,7 @@ namespace Civi\Api4; * Contacts of type Individual. * * This api is a facade for the Contact entity. - * In most ways it acts exactly like the Contact entity, but will inject [contact_type => Individual] + * In most ways it acts exactly like the Contact entity, plus it injects [contact_type => Individual] * into get, create, and batch actions (however, when updating or deleting a single Contact by id, * this will transparently pass-through to the Contact entity, so don't rely on this facade to enforce * contact type for single-record-by-id write operations). diff --git a/Civi/Api4/Organization.php b/Civi/Api4/Organization.php index 6b1e9a06ce..76c664e73b 100644 --- a/Civi/Api4/Organization.php +++ b/Civi/Api4/Organization.php @@ -14,7 +14,7 @@ namespace Civi\Api4; * Contacts of type Organization. * * This api is a facade for the Contact entity. - * In most ways it acts exactly like the Contact entity, but will inject [contact_type => Organization] + * In most ways it acts exactly like the Contact entity, plus it injects [contact_type => Organization] * into get, create, and batch actions (however, when updating or deleting a single Contact by id, * this will transparently pass-through to the Contact entity, so don't rely on this facade to enforce * contact type for single-record-by-id write operations). -- 2.25.1