*
* @return int
* Contact ID of the created user.
- * @throws \CiviCRM_API3_Exception
*/
public function createLoggedInUser(): int {
$params = [
*
* @return int
* id of Individual created
- *
- * @throws \CiviCRM_API3_Exception
*/
- public function individualCreate($params = [], $seq = 0, $random = FALSE): int {
+ public function individualCreate(array $params = [], $seq = 0, $random = FALSE): int {
$params = array_merge($this->sampleContact('Individual', $seq, $random), $params);
return $this->_contactCreate($params);
}