Skip to content

Commit d481958

Browse files
committed
Switch visibility of props private => protected
1 parent b52178d commit d481958

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Response.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,32 +32,32 @@ class Response
3232
/**
3333
* @var int
3434
*/
35-
private $internalCode = 0;
35+
protected $internalCode = 0;
3636

3737
/**
3838
* @var string[]
3939
*/
40-
private $internalHeaders = [];
40+
protected $internalHeaders = [];
4141

4242
/**
4343
* @var string|null
4444
*/
45-
private $internalBody;
45+
protected $internalBody;
4646

4747
/**
4848
* @var JSON|null
4949
*/
50-
private $parsedJsonData;
50+
protected $parsedJsonData;
5151

5252
/**
5353
* @var float|null
5454
*/
55-
private $time;
55+
protected $time;
5656

5757
/**
5858
* @var Request|null
5959
*/
60-
private $originalRequest;
60+
protected $originalRequest;
6161

6262
/**
6363
* @param int $code

0 commit comments

Comments
 (0)