mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-18 07:20:18 +08:00
Response WIP
This commit is contained in:
@@ -28,6 +28,21 @@ class Response extends \yii\base\Response
|
||||
*/
|
||||
public $ajaxRedirectCode = 278;
|
||||
|
||||
private $_headers;
|
||||
|
||||
/**
|
||||
* Returns the header collection.
|
||||
* The header collection contains the currently registered HTTP headers.
|
||||
* @return HeaderCollection the header collection
|
||||
*/
|
||||
public function getHeaders()
|
||||
{
|
||||
if ($this->_headers === null) {
|
||||
$this->_headers = new HeaderCollection;
|
||||
}
|
||||
return $this->_headers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a file to user.
|
||||
* @param string $fileName file name
|
||||
|
||||
Reference in New Issue
Block a user