Skip to content

Commit 36a460d

Browse files
committed
minor #7008 Missing semicolon (Saphyel)
This PR was submitted for the master branch but it was merged into the 3.1 branch instead (closes #7008). Discussion ---------- Missing semicolon Commits ------- 57923b9 Missing semicolon
2 parents d973d0d + 57923b9 commit 36a460d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/cache/cache_pools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ is ``getItem($key)``, which returns the cache item identified by the given key::
169169

170170
use Symfony\Component\Cache\Adapter\FilesystemAdapter;
171171

172-
$cache = new FilesystemAdapter('app.cache')
172+
$cache = new FilesystemAdapter('app.cache');
173173
$latestNews = $cache->getItem('latest_news');
174174

175175
If no item is defined for the given key, the method doesn't return a ``null``

0 commit comments

Comments
 (0)