Skip to content

Commit 93ef8a1

Browse files
authored
Merge pull request #745 from cakephp/ci
Fix CI
2 parents e15ad7b + 3a7c30a commit 93ef8a1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"cakephp/cakephp": "^5.1.0",
3636
"cakephp/cakephp-codesniffer": "^5.0",
3737
"firebase/php-jwt": "^6.2",
38-
"phpunit/phpunit": "^10.5.5 || ^11.1.3 || ^12.0.9"
38+
"phpunit/phpunit": "^10.5.32 || ^11.3.3 || ^12.0.9"
3939
},
4040
"suggest": {
4141
"ext-ldap": "Make sure this php extension is installed and enabled on your system if you want to use the built-in LDAP adapter for \"LdapIdentifier\".",

phpcs.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<ruleset name="CakePHP Core">
3-
<config name="installed_paths" value="../../cakephp/cakephp-codesniffer" />
4-
53
<rule ref="CakePHP"/>
4+
5+
<file>src/</file>
6+
<file>tests/</file>
67
</ruleset>

src/Authenticator/AuthenticationRequiredException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class AuthenticationRequiredException extends HttpException
2929
{
3030
/**
31-
* @var array<string, mixed>
31+
* @var array<non-empty-string, array<string>|string>
3232
*/
3333
protected array $headers = [];
3434

0 commit comments

Comments
 (0)