File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
user_guide_src/source/changelogs Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 94
94
__DIR__ . '/system/Router/AutoRouterImproved.php ' ,
95
95
// @TODO remove if deprecated $config is removed
96
96
__DIR__ . '/system/HTTP/Request.php ' ,
97
+ __DIR__ . '/system/HTTP/Response.php ' ,
97
98
],
98
99
99
100
// check on constant compare
Original file line number Diff line number Diff line change @@ -146,8 +146,10 @@ class Response extends Message implements ResponseInterface
146
146
* @param App $config
147
147
*
148
148
* @todo Recommend removing reliance on config injection
149
+ *
150
+ * @deprecated 4.5.0 The param $config is no longer used.
149
151
*/
150
- public function __construct ($ config )
152
+ public function __construct ($ config ) // @phpstan-ignore-line
151
153
{
152
154
// Default to a non-caching page.
153
155
// Also ensures that a Cache-control header exists.
Original file line number Diff line number Diff line change @@ -248,6 +248,8 @@ Deprecations
248
248
249
249
- **CodeIgniter: ** The ``determinePath() `` method has been deprecated. No longer
250
250
used.
251
+ - **Response: ** The constructor parameter ``$config `` has been deprecated. No
252
+ longer used.
251
253
252
254
Bugs Fixed
253
255
**********
You can’t perform that action at this time.
0 commit comments