From f2f21c3e2b522603fb92f2d73c6ea648780a2bc4 Mon Sep 17 00:00:00 2001 From: kremsy Date: Fri, 26 Jun 2015 11:51:23 +0200 Subject: [PATCH] typing --- core/Communication/CommunicationAnswer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/Communication/CommunicationAnswer.php b/core/Communication/CommunicationAnswer.php index e8f4e3fe..0fd1f766 100644 --- a/core/Communication/CommunicationAnswer.php +++ b/core/Communication/CommunicationAnswer.php @@ -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;