Merge pull request #5182 from colemanw/Cleanup
[civicrm-core.git] / tests / phpunit / CiviTest / Contact.php
index efcd1ec6874530d2655f7d1b2c1c134025c97e79..03c65c488d322d81865b58176d220087fc473435 100644 (file)
@@ -5,7 +5,7 @@
  */
 class Contact extends CiviUnitTestCase {
   /**
-   * Helper function to create
+   * Helper function to create.
    * a contact
    *
    * @param array $params
@@ -87,15 +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
+   * @return bool
    *   true if contact deleted, false otherwise
    */
   public static function delete($contactID) {
     require_once 'CRM/Contact/BAO/Contact.php';
     return CRM_Contact_BAO_Contact::deleteContact($contactID);
   }
+
 }