From 60730666abf806b2a95e25e0f699b1da672f841a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Wed, 21 Mar 2018 10:56:17 +0100 Subject: [PATCH] [FrameworkBundle] Partially revert HttpCache is not longer abstract (4d075da) --- src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php index 8455baafc7..57ff1c7c40 100644 --- a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php +++ b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php @@ -23,7 +23,7 @@ use Symfony\Component\HttpFoundation\Response; * * @author Fabien Potencier */ -class HttpCache extends BaseHttpCache +abstract class HttpCache extends BaseHttpCache { protected $cacheDir; protected $kernel;