From ce95d0d33db8d23085a2d4406b29e1ab5dbf340c Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Mon, 15 Oct 2018 17:16:38 +0200 Subject: [PATCH] [HttpFoundation] Publicify new consts --- src/Symfony/Component/HttpFoundation/HeaderUtils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/HeaderUtils.php b/src/Symfony/Component/HttpFoundation/HeaderUtils.php index f9e7bdac740be..637bc5be47177 100644 --- a/src/Symfony/Component/HttpFoundation/HeaderUtils.php +++ b/src/Symfony/Component/HttpFoundation/HeaderUtils.php @@ -18,8 +18,8 @@ */ class HeaderUtils { - const DISPOSITION_ATTACHMENT = 'attachment'; - const DISPOSITION_INLINE = 'inline'; + public const DISPOSITION_ATTACHMENT = 'attachment'; + public const DISPOSITION_INLINE = 'inline'; /** * This class should not be instantiated.