Response.php 526 Bytes
Newer Older
Qiang Xue committed
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
5 6 7 8 9 10 11 12 13
 * @license http://www.yiiframework.com/license/
 */

namespace yii\base;

/**
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
14
class Response extends Component
Qiang Xue committed
15
{
Qiang Xue committed
16
	/**
17 18
	 * @var integer the exit status. Exit statuses should be in the range 0 to 254.
	 * The status 0 means the program terminates successfully.
Qiang Xue committed
19
	 */
20
	public $exitStatus = 0;
Qiang Xue committed
21

22 23 24
	/**
	 * Sends the response to client.
	 */
25
	public function send()
Qiang Xue committed
26 27
	{
	}
Qiang Xue committed
28
}