contactcats/Civi/Api4/ContactCategory.php
Rich Lott / Artful Robot 3b393be4f4 initial commit
2024-02-27 18:34:28 +00:00

22 lines
340 B
PHP

<?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');
}
}