diff --git a/src/pjdietz/WellRESTed/Message.php b/src/pjdietz/WellRESTed/Message.php index 69e4761..4976489 100644 --- a/src/pjdietz/WellRESTed/Message.php +++ b/src/pjdietz/WellRESTed/Message.php @@ -34,6 +34,9 @@ abstract class Message // ------------------------------------------------------------------------- + /** + * Create a new HTTP message. + */ public function __construct() { $this->headers = array(); diff --git a/src/pjdietz/WellRESTed/Router.php b/src/pjdietz/WellRESTed/Router.php index 9447333..f971e9b 100644 --- a/src/pjdietz/WellRESTed/Router.php +++ b/src/pjdietz/WellRESTed/Router.php @@ -79,6 +79,9 @@ class Router implements HandlerInterface } } + /** + * Dispatch the singleton Request through the router and output the response. + */ public function respond() { $response = $this->getResponse(Request::getRequest()); $response->respond();