web/lib/Zend/Http/Response/Stream.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    14  * to license@zend.com so we can send you a copy immediately.
    14  * to license@zend.com so we can send you a copy immediately.
    15  *
    15  *
    16  * @category   Zend
    16  * @category   Zend
    17  * @package    Zend_Http
    17  * @package    Zend_Http
    18  * @subpackage Response
    18  * @subpackage Response
    19  * @version    $Id: Stream.php 20785 2010-01-31 09:43:03Z mikaelkael $
    19  * @version    $Id: Stream.php 24593 2012-01-05 20:35:02Z matthew $
    20  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    20  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    21  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    21  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    22  */
    22  */
    23 
    23 
    24 /**
    24 /**
    25  * Zend_Http_Response represents an HTTP 1.0 / 1.1 response message. It
    25  * Zend_Http_Response represents an HTTP 1.0 / 1.1 response message. It
    26  * includes easy access to all the response's different elemts, as well as some
    26  * includes easy access to all the response's different elemts, as well as some
    27  * convenience methods for parsing and validating HTTP responses.
    27  * convenience methods for parsing and validating HTTP responses.
    28  *
    28  *
    29  * @package    Zend_Http
    29  * @package    Zend_Http
    30  * @subpackage Response
    30  * @subpackage Response
    31  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    31  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    33  */
    33  */
    34 class Zend_Http_Response_Stream extends Zend_Http_Response
    34 class Zend_Http_Response_Stream extends Zend_Http_Response
    35 {
    35 {
    36     /**
    36     /**
    88     }
    88     }
    89 
    89 
    90     /**
    90     /**
    91      * Set the cleanup trigger
    91      * Set the cleanup trigger
    92      *
    92      *
    93      * @param $cleanup Set cleanup trigger
    93      * @param bool $cleanup Set cleanup trigger
    94      */
    94      */
    95     public function setCleanup($cleanup = true) {
    95     public function setCleanup($cleanup = true) {
    96         $this->_cleanup = $cleanup;
    96         $this->_cleanup = $cleanup;
    97     }
    97     }
    98 
    98