Relax protection on some Server members to allow extension

This commit is contained in:
PJ Dietz 2015-06-07 10:34:38 -04:00
parent 0cbcd6cbfc
commit 2fe3575e69
1 changed files with 7 additions and 7 deletions

View File

@ -15,17 +15,17 @@ use WellRESTed\Transmission\TransmitterInterface;
class Server class Server
{ {
/** @var array */ /** @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 */ /** @var DispatcherInterface */
private $dispatcher; 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. * Create a new server.
* *