Skip to content

Commit

Permalink
Switch visibility of props private => protected
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Aug 21, 2020
1 parent b52178d commit d481958
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Response.php
Expand Up @@ -32,32 +32,32 @@ class Response
/**
* @var int
*/
private $internalCode = 0;
protected $internalCode = 0;

/**
* @var string[]
*/
private $internalHeaders = [];
protected $internalHeaders = [];

/**
* @var string|null
*/
private $internalBody;
protected $internalBody;

/**
* @var JSON|null
*/
private $parsedJsonData;
protected $parsedJsonData;

/**
* @var float|null
*/
private $time;
protected $time;

/**
* @var Request|null
*/
private $originalRequest;
protected $originalRequest;

/**
* @param int $code
Expand Down

0 comments on commit d481958

Please sign in to comment.