Skip to content

Commit f35bb0e

Browse files
committed
refactor: make deprecated properties protected
1 parent de282b9 commit f35bb0e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

system/HTTP/IncomingRequest.php

+2-6
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,9 @@ class IncomingRequest extends Request
6767
* AFTER the baseURL. So, if hosted in a sub-folder this will
6868
* appear different than actual URI path. If you need that use getPath().
6969
*
70-
* @deprecated Will be protected. Use getUri() instead.
71-
*
7270
* @var URI
7371
*/
74-
public $uri;
72+
protected $uri;
7573

7674
/**
7775
* The detected URI path (relative to the baseURL).
@@ -125,10 +123,8 @@ class IncomingRequest extends Request
125123
* Configuration settings.
126124
*
127125
* @var App
128-
*
129-
* @deprecated Will be protected.
130126
*/
131-
public $config;
127+
protected $config;
132128

133129
/**
134130
* Holds the old data from a redirect.

0 commit comments

Comments
 (0)