Skip to content

Commit 1ee1979

Browse files
Update system/HTTP/RedirectResponse.php
Co-authored-by: John Paul E. Balandan, CPA <[email protected]>
1 parent cf7df3d commit 1ee1979

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

system/HTTP/RedirectResponse.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,8 @@ public function withInput()
9393
{
9494
$session = service('session');
9595
$session->setFlashdata('_ci_old_input', [
96-
// @phpstan-ignore-next-line
97-
'get' => $_GET ?? [],
98-
// @phpstan-ignore-next-line
99-
'post' => $_POST ?? [],
96+
'get' => $_GET ?? [], // @phpstan-ignore nullCoalesce.variable
97+
'post' => $_POST ?? [], // @phpstan-ignore nullCoalesce.variable
10098
]);
10199

102100
$this->withErrors();

0 commit comments

Comments
 (0)