Add Membership log entity
authorEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 20 Nov 2023 02:57:46 +0000 (15:57 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 20 Nov 2023 02:58:58 +0000 (15:58 +1300)
ext/civi_member/Civi/Api4/MembershipLog.php [new file with mode: 0644]

diff --git a/ext/civi_member/Civi/Api4/MembershipLog.php b/ext/civi_member/Civi/Api4/MembershipLog.php
new file mode 100644 (file)
index 0000000..011489d
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved.                        |
+ |                                                                    |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Api4;
+
+use Civi\Api4\Generic\DAOEntity;
+use Civi\Api4\Generic\Traits\ReadOnlyEntity;
+
+/**
+ * MembershipLog entity.
+ *
+ * @since 5.69
+ * @package Civi\Api4
+ */
+class MembershipLog extends DAOEntity {
+  use ReadOnlyEntity;
+
+}