2
0

InputResponse.php 456 B

123456789101112131415161718192021222324252627
  1. <?php
  2. class Zend_Tool_Framework_Client_Interactive_InputResponse
  3. {
  4. protected $_content = null;
  5. public function __construct($content = null)
  6. {
  7. if ($content) {
  8. $this->setContent($content);
  9. }
  10. }
  11. public function setContent($content)
  12. {
  13. $this->_content = $content;
  14. return $this;
  15. }
  16. public function getContent()
  17. {
  18. return $this->_content;
  19. }
  20. }