Change Message\Message::headers from private to protected

This commit is contained in:
PJ Dietz 2015-03-22 21:09:31 -04:00
parent 51f057b300
commit fe93ab13c1
1 changed files with 2 additions and 2 deletions

View File

@ -7,10 +7,10 @@ use Psr\Http\Message\StreamableInterface;
abstract class Message implements MessageInterface
{
/** @var HeaderCollection */
protected $headers;
/** @var StreamableInterface */
private $body;
/** @var HeaderCollection */
private $headers;
/** @var string */
private $protcolVersion = "1.1";