Merge pull request #5049 from totten/master-mailing-multiling
[civicrm-core.git] / CRM / Utils / Cache / APCcache.php
index c7a240478d7b86c7ae4a53d438ef6e7fc041e36a..0a10a48b6dd5b1a7740095de7898e46838add7d4 100644 (file)
@@ -37,7 +37,7 @@ class CRM_Utils_Cache_APCcache {
   const DEFAULT_PREFIX = '';
 
   /**
-   * The default timeout to use
+   * The default timeout to use.
    *
    * @var int
    */
@@ -55,7 +55,7 @@ class CRM_Utils_Cache_APCcache {
   protected $_prefix = self::DEFAULT_PREFIX;
 
   /**
-   * Constructor
+   * Constructor.
    *
    * @param array $config
    *   An array of configuration params.
@@ -110,7 +110,8 @@ class CRM_Utils_Cache_APCcache {
 
     foreach ($keys as $key) {
       $name = $key['info'];
-      if ($prefix == substr($name, 0, $lp)) {  // Ours?
+      if ($prefix == substr($name, 0, $lp)) {
+        // Ours?
         apc_delete($this->_prefix . $name);
       }
     }