style corrections
authorHerb <herb@3speedhub.com>
Fri, 16 Oct 2015 13:47:14 +0000 (09:47 -0400)
committerHerb <herb@3speedhub.com>
Fri, 16 Oct 2015 13:47:14 +0000 (09:47 -0400)
CRM/Utils/Cache/Redis.php

index 9f6dbe8c5761e4f17651627eaea5c7357674e813..12a4b357bea35354413cee6f978eca46efb40434 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -42,7 +42,7 @@ class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface {
    * The host name of the redisd server
    *
    * @var string
-  */
+   */
   protected $_host = self::DEFAULT_HOST;
 
   /**
@@ -80,7 +80,8 @@ class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface {
   /**
    * Constructor
    *
-   * @param array   $config  an array of configuration params
+   * @param array $config
+   *   An array of configuration params.
    *
    * @return \CRM_Utils_Cache_Redis
    */
@@ -148,4 +149,5 @@ class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface {
   public function flush() {
     return $this->_cache->flush();
   }
+
 }