Skip to content

Commit cf7df3d

Browse files
committed
Suppress PHPStan warning
1 parent 34d4dfe commit cf7df3d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

system/HTTP/RedirectResponse.php

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

100102
$this->withErrors();

0 commit comments

Comments
 (0)