From 783ecc762acc35ddbaedf2a9b6d85bf205b2bfdd Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Thu, 15 Jan 2015 19:24:54 +0000 Subject: [PATCH] Change the methods from private to public. --- resources/classes/cache.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/classes/cache.php b/resources/classes/cache.php index e7687f486b..29903555b2 100644 --- a/resources/classes/cache.php +++ b/resources/classes/cache.php @@ -32,7 +32,7 @@ class cache { * @var string $key the cache id * @var string $value string to be cached */ - private function set($key, $value) { + public function set($key, $value) { //send a custom event //run the memcache @@ -50,7 +50,7 @@ class cache { * Get a specific item from the cache * @var string $key cache id */ - private function get($key) { + public function get($key) { //send a custom event //run the memcache @@ -68,7 +68,7 @@ class cache { * Delete a specific item from the cache * @var string $key cache id */ - private function delete($key) { + public function delete($key) { //send a custom event //run the memcache @@ -85,7 +85,7 @@ class cache { /** * Delete the entire cache */ - private function flush() { + public function flush() { //send a custom event //run the memcache