From 21e3daa48fc83030a00dd1c7219f373bbecf06a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Votruba?= Date: Thu, 5 Apr 2018 16:24:50 +0200 Subject: [PATCH] add missing ";" --- components/cache/psr6_psr16_adapters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cache/psr6_psr16_adapters.rst b/components/cache/psr6_psr16_adapters.rst index 0557f942ab1..88f1e7c93e2 100644 --- a/components/cache/psr6_psr16_adapters.rst +++ b/components/cache/psr6_psr16_adapters.rst @@ -37,7 +37,7 @@ instead. No problem! The Cache component provides the this use-case:: use Symfony\Component\Cache\Simple\FilesystemCache; - use Symfony\Component\Cache\Adapter\SimpleCacheAdapter + use Symfony\Component\Cache\Adapter\SimpleCacheAdapter; // the PSR-16 cache object that you want to use $psr16Cache = new FilesystemCache();