Merge pull request #17236 from civicrm/5.25
[civicrm-core.git] / Civi / Api4 / Contact.php
index d0257579dba34cf81cd333e54b7966ce1a7cd128..9e13c833c46f832aab36734a60486b70565c2888 100644 (file)
@@ -14,8 +14,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC https://civicrm.org/licensing
- * $Id$
- *
  */
 
 
@@ -29,18 +27,21 @@ namespace Civi\Api4;
  *
  * Creating a new contact requires at minimum a name or email address.
  *
+ * @see https://docs.civicrm.org/user/en/latest/organising-your-data/contacts/
  * @package Civi\Api4
  */
 class Contact extends Generic\DAOEntity {
 
-  public static function getFields() {
-    return new Action\Contact\GetFields(__CLASS__, __FUNCTION__);
-  }
-
+  /**
+   * @return \Civi\Api4\Action\Contact\GetChecksum
+   */
   public static function getChecksum() {
     return new Action\Contact\GetChecksum(__CLASS__, __FUNCTION__);
   }
 
+  /**
+   * @return \Civi\Api4\Action\Contact\ValidateChecksum
+   */
   public static function validateChecksum() {
     return new Action\Contact\ValidateChecksum(__CLASS__, __FUNCTION__);
   }