Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Make $responsePrototype protected
Browse files Browse the repository at this point in the history
Will likely set the response prototype during instantation in
Expressive, and then use that as the default response if none is
provided to `run()`; as such, it cannot be private visibility.
  • Loading branch information
weierophinney committed Nov 3, 2016
1 parent 296810a commit 3f6df04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MiddlewarePipe.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class MiddlewarePipe implements MiddlewareInterface, ServerMiddlewareInterface
/**
* @var Response
*/
private $responsePrototype;
protected $responsePrototype;

/**
* Constructor
Expand Down

0 comments on commit 3f6df04

Please sign in to comment.