Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-25-11-27-40
[civicrm-core.git] / CRM / Utils / Cache / Interface.php
index 7d21c11c6f158bbb3ce18ff9d63ad6b9cb09a6df..ac4344c9d83aab4ad4dfee7a9811b34d2c7c2da6 100644 (file)
@@ -35,7 +35,7 @@
 interface CRM_Utils_Cache_Interface {
 
   /**
-   * Set the value in the cache
+   * Set the value in the cache.
    *
    * @param string $key
    * @param mixed $value
@@ -44,7 +44,7 @@ interface CRM_Utils_Cache_Interface {
   public function set($key, &$value);
 
   /**
-   * Get a value from the cache
+   * Get a value from the cache.
    *
    * @param string $key
    * @return mixed
@@ -53,7 +53,7 @@ interface CRM_Utils_Cache_Interface {
   public function get($key);
 
   /**
-   * Delete a value from the cache
+   * Delete a value from the cache.
    *
    * @param string $key
    * @return void
@@ -61,7 +61,7 @@ interface CRM_Utils_Cache_Interface {
   public function delete($key);
 
   /**
-   * Delete all values from the cache
+   * Delete all values from the cache.
    *
    * @return void
    */