Skip to content

Commit 8cf56de

Browse files
committed
style: composer cs-fix
1 parent 31d7abb commit 8cf56de

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

src/Filters/AuthRates.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use CodeIgniter\HTTP\IncomingRequest;
1818
use CodeIgniter\HTTP\RedirectResponse;
1919
use CodeIgniter\HTTP\RequestInterface;
20-
use CodeIgniter\HTTP\Response;
2120
use CodeIgniter\HTTP\ResponseInterface;
2221

2322
/**
@@ -59,7 +58,7 @@ public function before(RequestInterface $request, $arguments = null)
5958
/**
6059
* We don't have anything to do here.
6160
*
62-
* @param array|null $arguments
61+
* @param array|null $arguments
6362
*/
6463
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
6564
{

src/Filters/ChainAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function before(RequestInterface $request, $arguments = null)
6767
/**
6868
* We don't have anything to do here.
6969
*
70-
* @param array|null $arguments
70+
* @param array|null $arguments
7171
*/
7272
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
7373
{

src/Filters/ForcePasswordResetFilter.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use CodeIgniter\HTTP\IncomingRequest;
1818
use CodeIgniter\HTTP\RedirectResponse;
1919
use CodeIgniter\HTTP\RequestInterface;
20-
use CodeIgniter\HTTP\Response;
2120
use CodeIgniter\HTTP\ResponseInterface;
2221
use CodeIgniter\Shield\Authentication\Authenticators\Session;
2322

@@ -52,7 +51,7 @@ public function before(RequestInterface $request, $arguments = null)
5251
/**
5352
* We don't have anything to do here.
5453
*
55-
* @param array|null $arguments
54+
* @param array|null $arguments
5655
*/
5756
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
5857
{

src/Filters/JWTAuth.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use CodeIgniter\Filters\FilterInterface;
1717
use CodeIgniter\HTTP\IncomingRequest;
1818
use CodeIgniter\HTTP\RequestInterface;
19-
use CodeIgniter\HTTP\Response;
2019
use CodeIgniter\HTTP\ResponseInterface;
2120
use CodeIgniter\Shield\Authentication\Authenticators\JWT;
2221
use Config\Services;
@@ -64,7 +63,7 @@ public function before(RequestInterface $request, $arguments = null)
6463
/**
6564
* We don't have anything to do here.
6665
*
67-
* @param array|null $arguments
66+
* @param array|null $arguments
6867
*/
6968
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
7069
{

src/Filters/SessionAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function before(RequestInterface $request, $arguments = null)
9595
/**
9696
* We don't have anything to do here.
9797
*
98-
* @param array|null $arguments
98+
* @param array|null $arguments
9999
*/
100100
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
101101
{

src/Filters/TokenAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function before(RequestInterface $request, $arguments = null)
7979
/**
8080
* We don't have anything to do here.
8181
*
82-
* @param array|null $arguments
82+
* @param array|null $arguments
8383
*/
8484
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
8585
{

0 commit comments

Comments
 (0)