Pull out more members to header

This commit is contained in:
Dennis Eichhorn 2017-09-05 11:42:24 +02:00 committed by GitHub
parent 6280c04ffc
commit b87621bebc

View File

@ -80,14 +80,6 @@ abstract class RequestAbstract implements MessageInterface
*/ */
protected $path = []; protected $path = [];
/**
* Localization.
*
* @var Localization
* @since 1.0.0
*/
protected $l11n = null;
/** /**
* Language. * Language.
* *
@ -96,14 +88,6 @@ abstract class RequestAbstract implements MessageInterface
*/ */
protected $language = ''; protected $language = '';
/**
* Account.
*
* @var int
* @since 1.0.0
*/
protected $account = null;
/** /**
* Request type. * Request type.
* *
@ -292,14 +276,6 @@ abstract class RequestAbstract implements MessageInterface
return false; return false;
} }
/**
* {@inheritdoc}
*/
public function getL11n() : Localization
{
return $this->l11n;
}
/** /**
* Lock request for further manipulations. * Lock request for further manipulations.
* *
@ -312,22 +288,6 @@ abstract class RequestAbstract implements MessageInterface
$this->lock = true; $this->lock = true;
} }
/**
* {@inheritdoc}
*/
public function getAccount() : int
{
return $this->account;
}
/**
* {@inheritdoc}
*/
public function setAccount(int $account) /* : void */
{
$this->account = $account;
}
/** /**
* Get request header. * Get request header.
* *