Skip to content

Commit 6e880cb

Browse files
authored
Merge pull request #301 from cakephp/3.x-update-stan
update stan
2 parents a7a6f84 + 51f1304 commit 6e880cb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.phive/phars.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpstan" version="2.0.1" installed="2.0.1" location="./tools/phpstan" copy="false"/>
3+
<phar name="phpstan" version="2.1.0" installed="2.1.0" location="./tools/phpstan" copy="false"/>
44
<phar name="psalm" version="5.26.1" installed="5.26.1" location="./tools/psalm" copy="false"/>
55
</phive>

tests/TestCase/Middleware/UnauthorizedHandler/RedirectHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function testHandleRedirectionWithQuery()
5252
$request = ServerRequestFactory::fromGlobals(
5353
[
5454
'REQUEST_METHOD' => 'GET',
55-
'PATH_INFO' => '/path',
55+
'REQUEST_URI' => '/path',
5656
'QUERY_STRING' => 'key=value',
5757
]
5858
);
@@ -110,7 +110,7 @@ public function testHandleRedirectionIgnoreNonIdempotentMethods($method)
110110
$request = ServerRequestFactory::fromGlobals(
111111
[
112112
'REQUEST_METHOD' => $method,
113-
'PATH_INFO' => '/path',
113+
'REQUEST_URI' => '/path',
114114
'QUERY_STRING' => 'key=value',
115115
]
116116
);

0 commit comments

Comments
 (0)