CRM_Utils_Cache_Interface - Add missing "implements"
authorTim Otten <totten@civicrm.org>
Wed, 19 Aug 2015 09:07:49 +0000 (02:07 -0700)
committerTim Otten <totten@civicrm.org>
Thu, 17 Sep 2015 22:44:59 +0000 (15:44 -0700)
CRM/Utils/Cache/APCcache.php
CRM/Utils/Cache/Memcache.php
CRM/Utils/Cache/Memcached.php

index 7fe741dd48f3a6d50f662f4b3eb486288be916d4..f35f177b345c24dac7a841ac8a480d9a91ce8473 100644 (file)
@@ -32,7 +32,7 @@
  * $Id$
  *
  */
-class CRM_Utils_Cache_APCcache {
+class CRM_Utils_Cache_APCcache implements CRM_Utils_Cache_Interface {
   const DEFAULT_TIMEOUT = 3600;
   const DEFAULT_PREFIX = '';
 
index 21aaf66defdb0148eb3e0391a6c7f93d61cf8c37..2f0aaab65d4fbcfdcf891a1cf0da297aa4f131ed 100644 (file)
@@ -32,7 +32,7 @@
  * $Id$
  *
  */
-class CRM_Utils_Cache_Memcache {
+class CRM_Utils_Cache_Memcache implements CRM_Utils_Cache_Interface {
   const DEFAULT_HOST = 'localhost';
   const DEFAULT_PORT = 11211;
   const DEFAULT_TIMEOUT = 3600;
index 66b7f59fb306a15965f3b683c7c14dc3577f8741..3fb139b5bb1be9122424b401f76785a13ee8599a 100644 (file)
@@ -32,7 +32,7 @@
  * $Id$
  *
  */
-class CRM_Utils_Cache_Memcached {
+class CRM_Utils_Cache_Memcached implements CRM_Utils_Cache_Interface {
   const DEFAULT_HOST = 'localhost';
   const DEFAULT_PORT = 11211;
   const DEFAULT_TIMEOUT = 3600;