RequestResponse
[ class tree: RequestResponse ] [ index: RequestResponse ] [ all elements ]

Source for file Response.php

Documentation is available at Response.php

  1. <?php
  2. /**
  3.  * MVClasses
  4.  *
  5.  * LICENSE
  6.  *
  7.  * "THE BEER-WARE LICENSE" (Revision 42):
  8.  * "Sven Strittmatter" <ausserirdisch@sven-space.de> wrote this file.
  9.  * As long as you retain this notice you can do whatever you want with
  10.  * this stuff. If we meet some day, and you think this stuff is worth it,
  11.  * you can buy me a beer in return.
  12.  *
  13.  * @category    MVClasses
  14.  * @package     RequestResponse
  15.  * @copyright   Copyright (c) 2007 Sven Strittmatter
  16.  */
  17.  
  18. /**
  19.  * Enter description here...
  20.  * 
  21.  * Longdesc
  22.  *
  23.  * @todo complete description
  24.  * 
  25.  * @category    MVClasses
  26.  * @package     RequestResponse
  27.  * @copyright     Copyright (c) 2007 Sven Strittmatter
  28.  * @author    "Sven Strittmatter" <ausserirdisch@sven-space.de>
  29.  * @version     1.0
  30.  * @link        http://www.sven-space.de/code/php/MVClasses
  31.  */
  32. interface Response {
  33.     public function setStatus($status);
  34.     public function addHeader($name$value);
  35.     public function write($data);
  36.     public function flush();
  37.     public function getBody();
  38.     public function setBody($body);
  39. }

Documentation generated on Sun, 02 Aug 2009 17:15:03 +0200 by phpDocumentor 1.4.2