From 0339d8ad444b16cbfb547b3feefa2bd368e5ba56 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 5 Sep 2017 12:59:12 +0200 Subject: [PATCH] Remove path, it is part of the uri --- Message/RequestAbstract.php | 20 -------------------- 1 file changed, 20 deletions(-) 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} */