| 123456789101112131415161718192021222324252627 |
- <?php
- class Zend_Tool_Framework_Client_Interactive_InputResponse
- {
-
- protected $_content = null;
-
- public function __construct($content = null)
- {
- if ($content) {
- $this->setContent($content);
- }
- }
-
- public function setContent($content)
- {
- $this->_content = $content;
- return $this;
- }
-
- public function getContent()
- {
- return $this->_content;
- }
-
-
- }
|