From 6280c04ffcb739d23caf563a02742ee2d05b0314 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:41:16 +0200 Subject: [PATCH] Pull out more members to header --- Message/ResponseAbstract.php | 41 ------------------------------------ 1 file changed, 41 deletions(-) diff --git a/Message/ResponseAbstract.php b/Message/ResponseAbstract.php index be717f379..b1375f5aa 100644 --- a/Message/ResponseAbstract.php +++ b/Message/ResponseAbstract.php @@ -29,15 +29,6 @@ use phpOMS\Utils\ArrayUtils; */ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable { - - /** - * Localization. - * - * @var Localization - * @since 1.0.0 - */ - protected $l11n = null; - /** * Responses. * @@ -46,14 +37,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable */ protected $response = []; - /** - * Account. - * - * @var int - * @since 1.0.0 - */ - protected $account = 0; - /** * Header. * @@ -62,14 +45,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable */ protected $header = null; - /** - * {@inheritdoc} - */ - public function getL11n() : Localization - { - return $this->l11n; - } - /** * Get response by ID. * @@ -100,22 +75,6 @@ abstract class ResponseAbstract implements MessageInterface, \JsonSerializable $this->response = ArrayUtils::setArray((string) $key, $this->response, $response, ':', $overwrite); } - /** - * {@inheritdoc} - */ - public function getAccount() : int - { - return $this->account; - } - - /** - * {@inheritdoc} - */ - public function setAccount(int $account) /* : void */ - { - $this->account = $account; - } - /** * {@inheritdoc} */