Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
18 | class Response extends Component |
||
19 | { |
||
20 | /** |
||
21 | * @var int the exit status. Exit statuses should be in the range 0 to 254. |
||
22 | * The status 0 means the program terminates successfully. |
||
23 | */ |
||
24 | public $exitStatus = 0; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * Sends the response to client. |
||
29 | */ |
||
30 | public function send() |
||
31 | { |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Removes all existing output buffers. |
||
36 | */ |
||
37 | public function clearOutputBuffers() |
||
43 | } |
||
44 | } |
||
47 |