Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change properties that are private to be protected #96

Merged
merged 1 commit into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Factory/DecoratedResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class DecoratedResponseFactory implements ResponseFactoryInterface
/**
* @var ResponseFactoryInterface
*/
private $responseFactory;
protected $responseFactory;

/**
* @var StreamFactoryInterface
*/
private $streamFactory;
protected $streamFactory;

/**
* @param ResponseFactoryInterface $responseFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/DecoratedServerRequestFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class DecoratedServerRequestFactory implements ServerRequestFactoryInterface
/**
* @var ServerRequestFactoryInterface
*/
private $serverRequestFactory;
protected $serverRequestFactory;

/**
* @param ServerRequestFactoryInterface $serverRequestFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/DecoratedUriFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class DecoratedUriFactory implements UriFactoryInterface
/**
* @var UriFactoryInterface
*/
private $uriFactory;
protected $uriFactory;

/**
* @param UriFactoryInterface $uriFactory
Expand Down
4 changes: 2 additions & 2 deletions src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ class Response implements ResponseInterface
/**
* @var ResponseInterface
*/
private $response;
protected $response;

/**
* @var StreamFactoryInterface
*/
private $streamFactory;
protected $streamFactory;

/**
* EOL characters used for HTTP response.
Expand Down
4 changes: 2 additions & 2 deletions src/ServerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ class ServerRequest implements ServerRequestInterface
/**
* @var ServerRequestInterface
*/
private $serverRequest;
protected $serverRequest;

/**
* @var array
*/
private $bodyParsers;
protected $bodyParsers;

/**
* @param ServerRequestInterface $serverRequest
Expand Down
2 changes: 1 addition & 1 deletion src/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Uri implements UriInterface
/**
* @var UriInterface
*/
private $uri;
protected $uri;

/**
* @param UriInterface $uri
Expand Down