From 06717be66f376388f58a99b0f88fdcefd6a46578 Mon Sep 17 00:00:00 2001 From: PJ Dietz Date: Wed, 26 Dec 2012 19:03:49 -0500 Subject: [PATCH] Add to-do notes Request and Response. --- Request.inc.php | 1 + Response.inc.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Request.inc.php b/Request.inc.php index 888052c..4ee5ff2 100644 --- a/Request.inc.php +++ b/Request.inc.php @@ -6,6 +6,7 @@ require_once(dirname(__FILE__) . '/Message.inc.php'); require_once(dirname(__FILE__) . '/Response.inc.php'); require_once(dirname(__FILE__) . '/exceptions/CurlException.inc.php'); +// TODO: Ensure header names are case insensitive // TODO: Include port in the URI /** diff --git a/Response.inc.php b/Response.inc.php index c9e5e32..976ac36 100644 --- a/Response.inc.php +++ b/Response.inc.php @@ -4,6 +4,8 @@ namespace wellrested; require_once(dirname(__FILE__) . '/Message.inc.php'); +// TODO: Ensure header names are case insensitive + /******************************************************************************* * Response *