28 lines
456 B
PHP
28 lines
456 B
PHP
<?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;
|
|
}
|
|
|
|
|
|
}
|