From b87621bebcbf84307eef6d2e19aa9c4c7835a95b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 11:42:24 +0200 Subject: [PATCH] Pull out more members to header --- Message/RequestAbstract.php | 40 ------------------------------------- 1 file changed, 40 deletions(-) diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 855a80c6b..73e1594f9 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -80,14 +80,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $path = []; - /** - * Localization. - * - * @var Localization - * @since 1.0.0 - */ - protected $l11n = null; - /** * Language. * @@ -96,14 +88,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $language = ''; - /** - * Account. - * - * @var int - * @since 1.0.0 - */ - protected $account = null; - /** * Request type. * @@ -292,14 +276,6 @@ abstract class RequestAbstract implements MessageInterface return false; } - /** - * {@inheritdoc} - */ - public function getL11n() : Localization - { - return $this->l11n; - } - /** * Lock request for further manipulations. * @@ -312,22 +288,6 @@ abstract class RequestAbstract implements MessageInterface $this->lock = true; } - /** - * {@inheritdoc} - */ - public function getAccount() : int - { - return $this->account; - } - - /** - * {@inheritdoc} - */ - public function setAccount(int $account) /* : void */ - { - $this->account = $account; - } - /** * Get request header. *