additional formatting fixes picked up by CI
[civicrm-core.git] / CRM / Core / ShowHideBlocks.php
index 71daf653784f90952be8653847b43843e410e5e6..96707ae28e68f672a70168df504232c53e9db32b 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -63,7 +63,7 @@ class CRM_Core_ShowHideBlocks {
    * @param array $hide
    *   Initial value of hide array.
    *
-   * @return \CRM_Core_ShowHideBlocks the newly created object@access public
+   * @return \CRM_Core_ShowHideBlocks the newly created object
    */
   public function __construct($show = NULL, $hide = NULL) {
     if (!empty($show)) {
@@ -85,7 +85,6 @@ class CRM_Core_ShowHideBlocks {
    * Load icon vars used in hide and show links
    *
    * @return void
-   * @static
    */
   public static function setIcons() {
     if (!isset(self::$_showIcon)) {
@@ -165,7 +164,8 @@ class CRM_Core_ShowHideBlocks {
    * @param string $text
    * @param string $js
    *
-   * @return string      the formatted html link
+   * @return string
+   *   the formatted html link
    */
   public static function linkHtml($name, $href, $text, $js) {
     return '<a name="' . $name . '" id="' . $name . '" href="' . $href . '" ' . $js . ">$text</a>";
@@ -185,7 +185,6 @@ class CRM_Core_ShowHideBlocks {
    *
    * @param bool $assign
    *
-   * @static
    *
    * @return void
    */
@@ -194,7 +193,7 @@ class CRM_Core_ShowHideBlocks {
     $hideCode = "cj('#id_{$prefix}').hide(); cj('#id_{$prefix}_show').show(); return false;";
 
     self::setIcons();
-    $values         = array();
+    $values = array();
     $values['show'] = self::linkHtml("${prefix}_show", "#${prefix}_hide", self::$_showIcon . $showLinkText, "onclick=\"$showCode\"");
     $values['hide'] = self::linkHtml("${prefix}_hide", "#${prefix}", self::$_hideIcon . $hideLinkText, "onclick=\"$hideCode\"");
 
@@ -269,4 +268,5 @@ class CRM_Core_ShowHideBlocks {
       );
     }
   }
+
 }