Skip to content

Commit 341ba47

Browse files
authored
Merge pull request #1084 from codeigniter4/dependabot/composer/rector/rector-1.0.4
chore(deps-dev): update rector/rector requirement from 1.0.3 to 1.0.4
2 parents 7088333 + 8cf56de commit 341ba47

File tree

7 files changed

+7
-16
lines changed

7 files changed

+7
-16
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"mockery/mockery": "^1.0",
3838
"phpstan/extension-installer": "^1.3",
3939
"phpstan/phpstan-strict-rules": "^1.5",
40-
"rector/rector": "1.0.3"
40+
"rector/rector": "1.0.4"
4141
},
4242
"provide": {
4343
"codeigniter4/authentication-implementation": "1.0"

src/Filters/AuthRates.php

Lines changed: 1 addition & 3 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,8 +58,7 @@ public function before(RequestInterface $request, $arguments = null)
5958
/**
6059
* We don't have anything to do here.
6160
*
62-
* @param Response|ResponseInterface $response
63-
* @param array|null $arguments
61+
* @param array|null $arguments
6462
*/
6563
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
6664
{

src/Filters/ChainAuth.php

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

src/Filters/ForcePasswordResetFilter.php

Lines changed: 1 addition & 3 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,8 +51,7 @@ public function before(RequestInterface $request, $arguments = null)
5251
/**
5352
* We don't have anything to do here.
5453
*
55-
* @param Response|ResponseInterface $response
56-
* @param array|null $arguments
54+
* @param array|null $arguments
5755
*/
5856
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
5957
{

src/Filters/JWTAuth.php

Lines changed: 1 addition & 3 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,8 +63,7 @@ public function before(RequestInterface $request, $arguments = null)
6463
/**
6564
* We don't have anything to do here.
6665
*
67-
* @param Response|ResponseInterface $response
68-
* @param array|null $arguments
66+
* @param array|null $arguments
6967
*/
7068
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null): void
7169
{

src/Filters/SessionAuth.php

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

src/Filters/TokenAuth.php

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

0 commit comments

Comments
 (0)