From 46a3dc9fbc87b91c04d6cd0975fa8bfc4f94adb4 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Fri, 16 Aug 2019 09:24:19 +0200 Subject: [PATCH] Adding missing semi colons --- cache.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cache.rst b/cache.rst index 2050b32dca4..52d615d541d 100644 --- a/cache.rst +++ b/cache.rst @@ -489,13 +489,13 @@ the same key could be invalidate with one function call:: use Symfony\Contracts\Cache\ItemInterface; $value0 = $pool->get('item_0', function (ItemInterface $item) { - $item->tag(['foo', 'bar']) + $item->tag(['foo', 'bar']); return 'debug'; }); $value1 = $pool->get('item_1', function (ItemInterface $item) { - $item->tag('foo') + $item->tag('foo'); return 'debug'; });