Merge pull request #6619 from colemanw/jsortable
[civicrm-core.git] / CRM / Utils / GlobalStack.php
index 4d10fef21b4154de84853ad4bbd3b577cb306d5c..3e8aa921b0454a14afea7575afd3dcba23bb784f 100644 (file)
@@ -1,8 +1,8 @@
 <?php /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -22,7 +22,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Temporarily change a global variable.
@@ -46,14 +46,13 @@ class CRM_Utils_GlobalStack {
    * We don't have a container or dependency-injection, so use singleton instead
    *
    * @var object
-   * @static
    */
   private static $_singleton = NULL;
 
   private $backups = array();
 
   /**
-   * Get or set the single instance of CRM_Utils_GlobalStack
+   * Get or set the single instance of CRM_Utils_GlobalStack.
    *
    * @return CRM_Utils_GlobalStack
    */
@@ -112,4 +111,5 @@ class CRM_Utils_GlobalStack {
       }
     }
   }
+
 }