Merge pull request #3949 from colemanw/CRM-15156
[civicrm-core.git] / CRM / Core / BAO / LocationType.php
index 1ba5e1084045d149d837870561bf4b3320c213b0..de7d95ad1e0b42de561ba90f2e05e5282e0b1449 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -109,6 +109,9 @@ class CRM_Core_BAO_LocationType extends CRM_Core_DAO_LocationType {
    * Get ID of billing location type
    * @return integer
    */
+  /**
+   * @return mixed|null
+   */
   static function getBilling() {
     if (self::$_billingLocationType == NULL) {
       $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
@@ -121,7 +124,8 @@ class CRM_Core_BAO_LocationType extends CRM_Core_DAO_LocationType {
    * Function to add a Location Type
    *
    * @param array $params reference array contains the values submitted by the form
-   * @param array $ids    reference array contains the id
+   *
+   * @internal param array $ids reference array contains the id
    *
    * @access public
    * @static