From 8cf56de4db85035893d18a03121971f824a070f8 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 6 Apr 2024 08:50:44 +0900 Subject: [PATCH] style: composer cs-fix --- src/Filters/AuthRates.php | 3 +-- src/Filters/ChainAuth.php | 2 +- src/Filters/ForcePasswordResetFilter.php | 3 +-- src/Filters/JWTAuth.php | 3 +-- src/Filters/SessionAuth.php | 2 +- src/Filters/TokenAuth.php | 2 +- 6 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/Filters/AuthRates.php b/src/Filters/AuthRates.php index 686beadb1..a533cf6e5 100644 --- a/src/Filters/AuthRates.php +++ b/src/Filters/AuthRates.php @@ -17,7 +17,6 @@ use CodeIgniter\HTTP\IncomingRequest; use CodeIgniter\HTTP\RedirectResponse; use CodeIgniter\HTTP\RequestInterface; -use CodeIgniter\HTTP\Response; use CodeIgniter\HTTP\ResponseInterface; /** @@ -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 { diff --git a/src/Filters/ChainAuth.php b/src/Filters/ChainAuth.php index 822ee6a4d..56be2c7b0 100644 --- a/src/Filters/ChainAuth.php +++ b/src/Filters/ChainAuth.php @@ -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 { diff --git a/src/Filters/ForcePasswordResetFilter.php b/src/Filters/ForcePasswordResetFilter.php index 6b551125a..65f55492a 100644 --- a/src/Filters/ForcePasswordResetFilter.php +++ b/src/Filters/ForcePasswordResetFilter.php @@ -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; @@ -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 { diff --git a/src/Filters/JWTAuth.php b/src/Filters/JWTAuth.php index 163ec7c51..c85bcc308 100644 --- a/src/Filters/JWTAuth.php +++ b/src/Filters/JWTAuth.php @@ -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; @@ -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 { diff --git a/src/Filters/SessionAuth.php b/src/Filters/SessionAuth.php index 7a009d344..2063f240d 100644 --- a/src/Filters/SessionAuth.php +++ b/src/Filters/SessionAuth.php @@ -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 { diff --git a/src/Filters/TokenAuth.php b/src/Filters/TokenAuth.php index a47e2ca09..b882e20d8 100644 --- a/src/Filters/TokenAuth.php +++ b/src/Filters/TokenAuth.php @@ -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 {