Cli.php 214 B

123456789101112131415
  1. <?php
  2. namespace Qii\Response;
  3. class Cli extends Base
  4. {
  5. /**
  6. * Magic __toString functionality
  7. *
  8. * @return string
  9. */
  10. public function __toString()
  11. {
  12. return $this->_body;
  13. }
  14. }