From 3e62ad8e53be47ef04a0f19cfccc94290e482a1b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 7 Jun 2014 17:46:10 +0200 Subject: [PATCH] [HttpFoundation] Officialize the 308 redirect RFC --- src/Symfony/Component/HttpFoundation/Response.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/Response.php b/src/Symfony/Component/HttpFoundation/Response.php index 7132cfca79..00502dd8ab 100644 --- a/src/Symfony/Component/HttpFoundation/Response.php +++ b/src/Symfony/Component/HttpFoundation/Response.php @@ -83,7 +83,7 @@ class Response 305 => 'Use Proxy', 306 => 'Reserved', 307 => 'Temporary Redirect', - 308 => 'Permanent Redirect', // RFC-reschke-http-status-308-07 + 308 => 'Permanent Redirect', // RFC7238 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required',