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. *