Response.php 605 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\base;
  8. /**
  9. * Response represents the response of an [[Application]] to a [[Request]].
  10. *
  11. * @author Qiang Xue <[email protected]>
  12. * @since 2.0
  13. */
  14. class Response extends Component
  15. {
  16. /**
  17. * @var integer the exit status. Exit statuses should be in the range 0 to 254.
  18. * The status 0 means the program terminates successfully.
  19. */
  20. public $exitStatus = 0;
  21. /**
  22. * Sends the response to client.
  23. */
  24. public function send()
  25. {
  26. }
  27. }