Skip to content

Commit 46a3dc9

Browse files
authored
Adding missing semi colons
1 parent 21e07cd commit 46a3dc9

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)