refactoring
This commit is contained in:
parent
4feeb01611
commit
aef1ae7396
1 changed files with 7 additions and 3 deletions
|
@ -221,7 +221,8 @@ class CRM_Twingle_Profile {
|
||||||
* Verifies whether the profile is valid (i.e. consistent and not colliding
|
* Verifies whether the profile is valid (i.e. consistent and not colliding
|
||||||
* with other profiles).
|
* with other profiles).
|
||||||
*
|
*
|
||||||
* @throws Exception
|
* @throws \CRM\Twingle\Exceptions\ProfileValidationError
|
||||||
|
* @throws \Civi\Core\Exception\DBQueryException
|
||||||
* When the profile could not be successfully validated.
|
* When the profile could not be successfully validated.
|
||||||
*/
|
*/
|
||||||
public function verifyProfile() {
|
public function verifyProfile() {
|
||||||
|
@ -231,7 +232,9 @@ class CRM_Twingle_Profile {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Persists the profile within the CiviCRM settings.
|
* Persists the profile within the database.
|
||||||
|
*
|
||||||
|
* @throws \CRM\Twingle\Exceptions\ProfileException
|
||||||
*/
|
*/
|
||||||
public function saveProfile() {
|
public function saveProfile() {
|
||||||
// make sure it's valid
|
// make sure it's valid
|
||||||
|
@ -269,7 +272,7 @@ class CRM_Twingle_Profile {
|
||||||
/**
|
/**
|
||||||
* Deletes the profile from the database
|
* Deletes the profile from the database
|
||||||
*
|
*
|
||||||
* @throws \CRM_Twingle_Exceptions_ProfileException
|
* @throws \CRM\Twingle\Exceptions\ProfileException
|
||||||
*/
|
*/
|
||||||
public function deleteProfile() {
|
public function deleteProfile() {
|
||||||
// Do only reset default profile
|
// Do only reset default profile
|
||||||
|
@ -481,6 +484,7 @@ class CRM_Twingle_Profile {
|
||||||
*
|
*
|
||||||
* @return CRM_Twingle_Profile | NULL
|
* @return CRM_Twingle_Profile | NULL
|
||||||
* @throws \Civi\Core\Exception\DBQueryException
|
* @throws \Civi\Core\Exception\DBQueryException
|
||||||
|
* @throws \CRM\Twingle\Exceptions\ProfileException
|
||||||
*/
|
*/
|
||||||
public static function getProfile(int $id = NULL) {
|
public static function getProfile(int $id = NULL) {
|
||||||
if (!empty($id)) {
|
if (!empty($id)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue