X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=CRM%2FUtils%2FGlobalStack.php;h=b6d4a089ccf105ea2bc06fb27b8118a5205086c2;hb=8671b4f2efb228dc654123b391fd794b23b99d49;hp=571e2e919d4be01bdc645808e02fc24acbd0c9fb;hpb=6f2500ee7589360102875df4367568fe87485df6;p=civicrm-core.git diff --git a/CRM/Utils/GlobalStack.php b/CRM/Utils/GlobalStack.php index 571e2e919d..b6d4a089cc 100644 --- a/CRM/Utils/GlobalStack.php +++ b/CRM/Utils/GlobalStack.php @@ -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 { } } } + }