INFRA-132 - Comment grammar cleanup
[civicrm-core.git] / CRM / Member / PseudoConstant.php
index 9003803fd6af2b448592f392a6c203c647420634..03415578db831e34350f9702f840220a46bb7904 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -56,7 +56,6 @@ class CRM_Member_PseudoConstant extends CRM_Core_PseudoConstant {
   /**
    * Get all the membership types
    *
-   * @access public
    *
    * @param int $id
    * @param bool $force
@@ -86,7 +85,6 @@ class CRM_Member_PseudoConstant extends CRM_Core_PseudoConstant {
   /**
    * Get all the membership statuss
    *
-   * @access public
    *
    * @param int $id
    * @param null $cond
@@ -127,15 +125,13 @@ class CRM_Member_PseudoConstant extends CRM_Core_PseudoConstant {
    * Flush given pseudoconstant so it can be reread from db
    * next time it's requested.
    *
-   * @access public
    * @static
    *
    * @param bool|string $name pseudoconstant to be flushed
    */
   public static function flush($name = 'cache') {
-   if (isset(self::$$name)) {
+    if (isset(self::$$name)) {
       self::$$name = NULL;
-    }
+   }
   }
 }
-