This commit is contained in:
kremsy 2015-06-26 11:51:23 +02:00
parent 9760a59836
commit f2f21c3e2b

View File

@ -14,6 +14,10 @@ class CommunicationAnswer {
public $error;
public $data;
/**
* @param string $data
* @param bool $error
*/
public function __construct($data = "", $error = false) {
$this->data = $data;
$this->error = $error;