civicrm-version.php - Internal helpers should use manifestly private namespace
authorTim Otten <totten@civicrm.org>
Fri, 11 May 2018 00:38:25 +0000 (17:38 -0700)
committerTim Otten <totten@civicrm.org>
Fri, 11 May 2018 02:01:26 +0000 (19:01 -0700)
The new helper functions in this file shouldn't be used externally; this
file is just an adapter for backward-compatibility.  External callers should
still use `CRM_Utils_System::version()`, `civicrmVersion()`, or
`version.xml`.

civicrm-version.php

index 6292f2b2cdd8e5ec2beceea90dd776227a00299a..b0013037dce184f2d36713279f2e6dfcc3bcbb99 100755 (executable)
@@ -1,8 +1,8 @@
 <?php
 
-namespace Civi {
+namespace _CiviVersion_ {
 
-  class Version {
+  class Util {
 
     /**
      * Get the CiviCRM version
@@ -111,8 +111,8 @@ namespace {
    */
   function civicrmVersion() {
     return [
-      'version' => \Civi\Version::findVersion(),
-      'cms' => \Civi\Version::findCMS(),
+      'version' => \_CiviVersion_\Util::findVersion(),
+      'cms' => \_CiviVersion_\Util::findCMS(),
     ];
   }
 }