CRM-15849: fix translation string, comments
[civicrm-core.git] / CRM / Contact / BAO / GroupOrganization.php
index 8da6664c5749e66b282474f4a329c5cc30a83700..848157d02629694dc1f381f0fe2fd4a4a3e19187 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -95,7 +95,7 @@ class CRM_Contact_BAO_GroupOrganization extends CRM_Contact_DAO_GroupOrganizatio
    * @param array $params
    *   (reference ) an assoc array of name/value pairs.
    *
-   * @return boolean
+   * @return bool
    */
   public static function dataExists($params) {
     // return if no data present
@@ -123,7 +123,7 @@ class CRM_Contact_BAO_GroupOrganization extends CRM_Contact_DAO_GroupOrganizatio
    *
    * @param int $contactID
    *
-   * @return boolean
+   * @return bool
    */
   public static function hasGroupAssociated($contactID) {
     $orgID = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_GroupOrganization',
@@ -143,7 +143,6 @@ class CRM_Contact_BAO_GroupOrganization extends CRM_Contact_DAO_GroupOrganizatio
    *
    * @return int|null
    *   no of deleted group organization on success, false otherwise
-   * @access public
    */
   public static function deleteGroupOrganization($groupOrganizationID) {
     $results = NULL;
@@ -154,4 +153,5 @@ class CRM_Contact_BAO_GroupOrganization extends CRM_Contact_DAO_GroupOrganizatio
 
     return $results;
   }
+
 }