Skip to content

Commit 5fc8f2a

Browse files
committed
bug #12183 [cache] Adding missing semicolons (Nyholm)
This PR was merged into the 4.3 branch. Discussion ---------- [cache] Adding missing semicolons Typo Commits ------- 46a3dc9 Adding missing semi colons
2 parents 21e07cd + 46a3dc9 commit 5fc8f2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cache.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,13 +489,13 @@ the same key could be invalidate with one function call::
489489
use Symfony\Contracts\Cache\ItemInterface;
490490

491491
$value0 = $pool->get('item_0', function (ItemInterface $item) {
492-
$item->tag(['foo', 'bar'])
492+
$item->tag(['foo', 'bar']);
493493

494494
return 'debug';
495495
});
496496

497497
$value1 = $pool->get('item_1', function (ItemInterface $item) {
498-
$item->tag('foo')
498+
$item->tag('foo');
499499

500500
return 'debug';
501501
});

0 commit comments

Comments
 (0)