Skip to content

Commit

Permalink
style: composer cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Apr 5, 2024
1 parent 31d7abb commit 8cf56de
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/Filters/AuthRates.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\RedirectResponse;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\Response;
use CodeIgniter\HTTP\ResponseInterface;

/**
Expand Down Expand Up @@ -59,7 +58,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
2 changes: 1 addition & 1 deletion src/Filters/ChainAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
3 changes: 1 addition & 2 deletions src/Filters/ForcePasswordResetFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\RedirectResponse;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\Response;
use CodeIgniter\HTTP\ResponseInterface;
use CodeIgniter\Shield\Authentication\Authenticators\Session;

Expand Down Expand Up @@ -52,7 +51,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
3 changes: 1 addition & 2 deletions src/Filters/JWTAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use CodeIgniter\Filters\FilterInterface;
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\Response;
use CodeIgniter\HTTP\ResponseInterface;
use CodeIgniter\Shield\Authentication\Authenticators\JWT;
use Config\Services;
Expand Down Expand Up @@ -64,7 +63,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
2 changes: 1 addition & 1 deletion src/Filters/SessionAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
2 changes: 1 addition & 1 deletion src/Filters/TokenAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down

0 comments on commit 8cf56de

Please sign in to comment.