Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit fcb68eb

Browse files
committed
Changed variable visibility
1 parent 07d8cf2 commit fcb68eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Http/Response.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
class Response implements ResponseInterface
66
{
7-
private $version = '1.1';
8-
private $statusCode = 200;
9-
private $statusText = 'OK';
10-
private $headers = [];
11-
private $cookies = [];
12-
private $content;
13-
14-
private $statusTexts = [
7+
protected $version = '1.1';
8+
protected $statusCode = 200;
9+
protected $statusText = 'OK';
10+
protected $headers = [];
11+
protected $cookies = [];
12+
public $content;
13+
14+
protected $statusTexts = [
1515
100 => 'Continue',
1616
101 => 'Switching Protocols',
1717
102 => 'Processing',

0 commit comments

Comments
 (0)