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