We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34d4dfe commit cf7df3dCopy full SHA for cf7df3d
system/HTTP/RedirectResponse.php
@@ -93,8 +93,10 @@ public function withInput()
93
{
94
$session = service('session');
95
$session->setFlashdata('_ci_old_input', [
96
- 'get' => $_GET ?? [], // @phpstan-ignore-next-line
97
- 'post' => $_POST ?? [], // @phpstan-ignore-next-line
+ // @phpstan-ignore-next-line
+ 'get' => $_GET ?? [],
98
99
+ 'post' => $_POST ?? [],
100
]);
101
102
$this->withErrors();
0 commit comments