diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index 37e396305..8c2edfff5 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -72,14 +72,6 @@ abstract class RequestAbstract implements MessageInterface */ protected $data = []; - /** - * Request data. - * - * @var array - * @since 1.0.0 - */ - protected $path = []; - /** * Request type. * @@ -208,18 +200,6 @@ abstract class RequestAbstract implements MessageInterface $this->method = $method; } - /** - * {@inheritdoc} - */ - public function getPath($key = null) /* : ?string */ - { - if ($key === null) { - return $this->path; - } - - return $this->path[$key] ?? null; - } - /** * {@inheritdoc} */