CRM-14931 - Nicer formating of statusBounce errors
[civicrm-core.git] / CRM / Core / PseudoConstant.php
index 7d333fa87fc817291eafe8677d0b3544bf5de4e5..a93e07f59e0265a9cbc897ee223c4f9e8ab9c925 100644 (file)
@@ -1549,6 +1549,12 @@ WHERE  id = %1";
     return self::$visibility[$column];
   }
 
+  /**
+   * @param $countryID
+   * @param string $field
+   *
+   * @return array
+   */
   public static function &stateProvinceForCountry($countryID, $field = 'name') {
     static $_cache = NULL;
 
@@ -1598,6 +1604,11 @@ ORDER BY name";
     return $result;
   }
 
+  /**
+   * @param $stateID
+   *
+   * @return array
+   */
   public static function &countyForState($stateID) {
     if (is_array($stateID)) {
       $states = implode(", ", $stateID);