From 34738450d1981eeeeacb4f34b45df4215350a4b6 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Sat, 13 Nov 2021 15:08:19 +0300 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index fc792d5..8774dba 100644 --- a/README.md +++ b/README.md @@ -104,8 +104,7 @@ To retrieve a tagged cache item, pass the same ordered list of tags to the tags ```php use DragonCode\Cache\Services\Cache; -$cache = Cache::make() - ->key('foo', 'bar'); +$cache = Cache::make()->key('foo', 'bar'); $cache->tags('actor', 'author')->put(static fn() => 'Some value'); // Contains cached `Some value`