From c5fe0ea3f79d10e4d16a2c3950374610312a386f Mon Sep 17 00:00:00 2001 From: Gjero Krsteski Date: Thu, 22 Oct 2015 09:54:55 +0200 Subject: [PATCH] add readme documentation --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index fd4ad6c..a1c023c 100644 --- a/README.markdown +++ b/README.markdown @@ -95,7 +95,7 @@ $yourObjectIdentifier = 'your:cool:object:identifier'; // Check if your object is in the cache. // You also can ignore it, and let the CacheDba do it for you. -if (false == $cache->has($yourObjectIdentifier)) { +if (true === $cache->has($yourObjectIdentifier)) { $cache->delete($yourObjectIdentifier); }