Skip to content

Commit 1eb0dce

Browse files
committed
fix: rector/phpstan error
1 parent 056e8be commit 1eb0dce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Filters/AbstractAuthFilter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use CodeIgniter\Filters\FilterInterface;
88
use CodeIgniter\HTTP\RedirectResponse;
99
use CodeIgniter\HTTP\RequestInterface;
10-
use CodeIgniter\HTTP\Response;
1110
use CodeIgniter\HTTP\ResponseInterface;
1211
use CodeIgniter\Shield\Config\Auth;
1312

@@ -16,6 +15,8 @@
1615
*/
1716
abstract class AbstractAuthFilter implements FilterInterface
1817
{
18+
protected string $filterName;
19+
1920
/**
2021
* Ensures the user is logged in and a member of one or
2122
* more groups as specified in the filter.
@@ -58,8 +59,7 @@ public function before(RequestInterface $request, $arguments = null)
5859
/**
5960
* We don't have anything to do here.
6061
*
61-
* @param Response|ResponseInterface $response
62-
* @param array|null $arguments
62+
* @param array|null $arguments
6363
*/
6464
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
6565
{

0 commit comments

Comments
 (0)