X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FCache%2FInterface.php;h=ac4344c9d83aab4ad4dfee7a9811b34d2c7c2da6;hb=f377f10d244045a52b5891bdeedc823b3988bd7c;hp=7d21c11c6f158bbb3ce18ff9d63ad6b9cb09a6df;hpb=04d2e082924ee167fa35b78dfaacfaef07c8cd8a;p=civicrm-core.git diff --git a/CRM/Utils/Cache/Interface.php b/CRM/Utils/Cache/Interface.php index 7d21c11c6f..ac4344c9d8 100644 --- a/CRM/Utils/Cache/Interface.php +++ b/CRM/Utils/Cache/Interface.php @@ -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 */