initial commit

This commit is contained in:
Rich Lott / Artful Robot 2024-02-27 18:34:28 +00:00
commit 3b393be4f4
16 changed files with 1594 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?php
namespace Civi\Api4;
use Civi\Api4\Action\ContactCategory\Sync;
/**
* ContactCategory entity.
*
* Provided by the Contact Categories extension.
*
* @package Civi\Api4
*/
class ContactCategory extends Generic\DAOEntity {
/**
*
*/
public function sync(): Sync {
return new Sync('ContactCategory', 'sync');
}
}