Add first test, and fix the bugs it found!

This commit is contained in:
Rich Lott / Artful Robot 2025-03-25 22:02:52 +00:00
parent 92db3be27e
commit 78e5b83c1d
3 changed files with 183 additions and 21 deletions

View file

@ -1,6 +1,7 @@
<?php
namespace Civi\Api4;
use Civi\Api4\Action\ContactCategory\GetFlows;
use Civi\Api4\Action\ContactCategory\Sync;
/**
@ -19,4 +20,11 @@ class ContactCategory extends Generic\DAOEntity {
return new Sync('ContactCategory', 'sync');
}
/**
*
*/
public static function getFlows(): GetFlows {
return new GetFlows('ContactCategory', 'getFlows');
}
}