Civi\Angular - Docblock improvements.
[civicrm-core.git] / CRM / Utils / GlobalStack.php
index 571e2e919d4be01bdc645808e02fc24acbd0c9fb..b6d4a089ccf105ea2bc06fb27b8118a5205086c2 100644 (file)
@@ -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,7 +46,6 @@ class CRM_Utils_GlobalStack {
    * We don't have a container or dependency-injection, so use singleton instead
    *
    * @var object
-   * @static
    */
   private static $_singleton = NULL;
 
@@ -79,7 +78,8 @@ class CRM_Utils_GlobalStack {
   /**
    * @param array $new
    *   The new, incoming frame.
-   * @return array frame
+   * @return array
+   *   frame
    */
   public function createBackup($new) {
     $frame = array();
@@ -111,4 +111,5 @@ class CRM_Utils_GlobalStack {
       }
     }
   }
+
 }