From 9f49773e7b88993edcc351ada1142d5d03098487 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 19 Aug 2015 02:07:49 -0700 Subject: [PATCH] CRM_Utils_Cache_Interface - Add missing "implements" --- CRM/Utils/Cache/APCcache.php | 2 +- CRM/Utils/Cache/Memcache.php | 2 +- CRM/Utils/Cache/Memcached.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Utils/Cache/APCcache.php b/CRM/Utils/Cache/APCcache.php index 7fe741dd48..f35f177b34 100644 --- a/CRM/Utils/Cache/APCcache.php +++ b/CRM/Utils/Cache/APCcache.php @@ -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 = ''; diff --git a/CRM/Utils/Cache/Memcache.php b/CRM/Utils/Cache/Memcache.php index 21aaf66def..2f0aaab65d 100644 --- a/CRM/Utils/Cache/Memcache.php +++ b/CRM/Utils/Cache/Memcache.php @@ -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; diff --git a/CRM/Utils/Cache/Memcached.php b/CRM/Utils/Cache/Memcached.php index 66b7f59fb3..3fb139b5bb 100644 --- a/CRM/Utils/Cache/Memcached.php +++ b/CRM/Utils/Cache/Memcached.php @@ -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; -- 2.25.1