From 2fe3575e698d446e8e79d3ab762e51484e7353a9 Mon Sep 17 00:00:00 2001 From: PJ Dietz Date: Sun, 7 Jun 2015 10:34:38 -0400 Subject: [PATCH] Relax protection on some Server members to allow extension --- src/Server.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Server.php b/src/Server.php index aa3ba22..9d88194 100644 --- a/src/Server.php +++ b/src/Server.php @@ -15,17 +15,17 @@ use WellRESTed\Transmission\TransmitterInterface; class Server { /** @var array */ - private $attributes; + protected $attributes; + + /** @var string ServerRequestInterface attribute name for matched path variables */ + protected $pathVariablesAttributeName; + + /** @var mixed[] List array of middleware */ + protected $stack; /** @var DispatcherInterface */ private $dispatcher; - /** @var string ServerRequestInterface attribute name for matched path variables */ - private $pathVariablesAttributeName; - - /** @var mixed[] List array of middleware */ - private $stack; - /** * Create a new server. *