From 2e8a05d818b1bba3906906e1c5f77d4da6e1f4a0 Mon Sep 17 00:00:00 2001 From: KrisJordan Date: Tue, 9 Jun 2009 15:44:29 -0400 Subject: [PATCH] ResponseCodes should be abstract. --- recess/recess/http/ResponseCodes.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recess/recess/http/ResponseCodes.class.php b/recess/recess/http/ResponseCodes.class.php index 5a1b1f3..90e4977 100644 --- a/recess/recess/http/ResponseCodes.class.php +++ b/recess/recess/http/ResponseCodes.class.php @@ -10,7 +10,7 @@ * @license MIT * @link http://www.recessframework.org/ */ -class ResponseCodes { +abstract class ResponseCodes { // [Informational 1xx] const HTTP_CONTINUE = 100; const HTTP_SWITCHING_PROTOCOLS = 101;