2
0

InputRequest.php 517 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. class Zend_Tool_Framework_Client_Interactive_InputRequest
  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. public function __toString()
  21. {
  22. return $this->_content;
  23. }
  24. }