Style - Remove @public, @private, @protected
[civicrm-core.git] / CRM / Contact / BAO / SearchCustom.php
index 5fa1c8679492f0f4301d2d950f16ab8f61700395..3f534af36a496dd45838b3e7155a8f310b1f2eed 100644 (file)
@@ -42,7 +42,7 @@ class CRM_Contact_BAO_SearchCustom {
    * @return array
    * @throws Exception
    */
-  static function details($csID, $ssID = NULL, $gID = NULL) {
+  public static function details($csID, $ssID = NULL, $gID = NULL) {
     $error = array(NULL, NULL, NULL);
 
     if (!$csID &&
@@ -106,7 +106,7 @@ class CRM_Contact_BAO_SearchCustom {
    * @return mixed
    * @throws Exception
    */
-  static function customClass($csID, $ssID) {
+  public static function customClass($csID, $ssID) {
     list($customSearchID, $customSearchClass, $formValues) = self::details($csID, $ssID);
 
     if (!$customSearchID) {
@@ -125,7 +125,7 @@ class CRM_Contact_BAO_SearchCustom {
    *
    * @return mixed
    */
-  static function contactIDSQL($csID, $ssID) {
+  public static function contactIDSQL($csID, $ssID) {
     $customClass = self::customClass($csID, $ssID);
     return $customClass->contactIDs();
   }
@@ -135,7 +135,7 @@ class CRM_Contact_BAO_SearchCustom {
    *
    * @return array
    */
-  static function &buildFormValues($args) {
+  public static function &buildFormValues($args) {
     $args = trim($args);
 
     $values = explode("\n", $args);
@@ -155,7 +155,7 @@ class CRM_Contact_BAO_SearchCustom {
    *
    * @return array
    */
-  static function fromWhereEmail($csID, $ssID) {
+  public static function fromWhereEmail($csID, $ssID) {
     $customClass = self::customClass($csID, $ssID);
 
     $from = $customClass->from();