Merge pull request #5182 from colemanw/Cleanup
[civicrm-core.git] / tests / phpunit / CiviTest / Contact.php
index c4f0529b600ca500223872c2834895ae65e94143..03c65c488d322d81865b58176d220087fc473435 100644 (file)
@@ -5,14 +5,15 @@
  */
 class Contact extends CiviUnitTestCase {
   /**
-   * Helper function to create
+   * Helper function to create.
    * a contact
    *
    * @param array $params
    *
-   * @return int $contactID id of created contact
+   * @return int
+   *   $contactID id of created contact
    */
-  static function create($params) {
+  public static function create($params) {
     require_once "CRM/Contact/BAO/Contact.php";
     $contactID = CRM_Contact_BAO_Contact::createProfileContact($params, CRM_Core_DAO::$_nullArray);
     return $contactID;
@@ -23,9 +24,10 @@ class Contact extends CiviUnitTestCase {
    * a contact of type Individual
    *
    * @param array $params
-   * @return int $contactID id of created Individual
+   * @return int
+   *   $contactID id of created Individual
    */
-  static function createIndividual($params = NULL) {
+  public static function createIndividual($params = NULL) {
     //compose the params, when not passed
     if (!$params) {
       $first_name = 'John';
@@ -45,9 +47,10 @@ class Contact extends CiviUnitTestCase {
    * a contact of type Household
    *
    * @param array $params
-   * @return mixed $contactID id of created Household
+   * @return int
+   *   id of created Household
    */
-  static function createHousehold($params = NULL) {
+  public static function createHousehold($params = NULL) {
     //compose the params, when not passed
     if (!$params) {
       $household_name = "John Doe's home";
@@ -66,9 +69,10 @@ class Contact extends CiviUnitTestCase {
    * a contact of type Organisation
    *
    * @param array $params
-   * @return mixed $contactID id of created Organisation
+   * @return int
+   *   id of created Organisation
    */
-  static function createOrganisation($params = NULL) {
+  public static function createOrganisation($params = NULL) {
     //compose the params, when not passed
     if (!$params) {
       $organization_name = "My Organization";
@@ -83,13 +87,16 @@ class Contact extends CiviUnitTestCase {
   }
 
   /**
-   * Helper function to delete a contact
+   * Helper function to delete a contact.
    *
-   * @param  int  $contactID   id of the contact to delete
-   * @return boolean true if contact deleted, false otherwise
+   * @param int $contactID
+   *   Id of the contact to delete.
+   * @return bool
+   *   true if contact deleted, false otherwise
    */
-  static function delete($contactID) {
+  public static function delete($contactID) {
     require_once 'CRM/Contact/BAO/Contact.php';
     return CRM_Contact_BAO_Contact::deleteContact($contactID);
   }
+
 }