Skip to content

Commit

Permalink
Merge pull request #1084 from codeigniter4/dependabot/composer/rector…
Browse files Browse the repository at this point in the history
…/rector-1.0.4

chore(deps-dev): update rector/rector requirement from 1.0.3 to 1.0.4
  • Loading branch information
samsonasik committed Apr 6, 2024
2 parents 7088333 + 8cf56de commit 341ba47
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"mockery/mockery": "^1.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "1.0.3"
"rector/rector": "1.0.4"
},
"provide": {
"codeigniter4/authentication-implementation": "1.0"
Expand Down
4 changes: 1 addition & 3 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,8 +58,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @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/ChainAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
4 changes: 1 addition & 3 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,8 +51,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down
4 changes: 1 addition & 3 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,8 +63,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @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/SessionAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @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/TokenAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ public function before(RequestInterface $request, $arguments = null)
/**
* We don't have anything to do here.
*
* @param Response|ResponseInterface $response
* @param array|null $arguments
* @param array|null $arguments
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
{
Expand Down

0 comments on commit 341ba47

Please sign in to comment.