We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
private
protected
1 parent b52178d commit d481958Copy full SHA for d481958
src/Response.php
@@ -32,32 +32,32 @@ class Response
32
/**
33
* @var int
34
*/
35
- private $internalCode = 0;
+ protected $internalCode = 0;
36
37
38
* @var string[]
39
40
- private $internalHeaders = [];
+ protected $internalHeaders = [];
41
42
43
* @var string|null
44
45
- private $internalBody;
+ protected $internalBody;
46
47
48
* @var JSON|null
49
50
- private $parsedJsonData;
+ protected $parsedJsonData;
51
52
53
* @var float|null
54
55
- private $time;
+ protected $time;
56
57
58
* @var Request|null
59
60
- private $originalRequest;
+ protected $originalRequest;
61
62
63
* @param int $code
0 commit comments