Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

## Supported Versions

| Version | Supported |
|---------|--------------------|
| 5.x | :white_check_mark: |
| 4.x | :white_check_mark: |
| 3.x | :x: |
| <= 2.0 | :x: |
| Version | Supported |
|---------|-------------------------------|
| 6.x | :white_check_mark: |
| 5.x | :white_check_mark: |
| 4.x | :warning: (security-fix only) |
| 3.x | :x: |
| <= 2.0 | :x: |

## Reporting Potential Security Issues

Expand Down
2 changes: 1 addition & 1 deletion test/Unit/App/Middleware/AuthorizationMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

class AuthorizationMiddlewareTest extends TestCase
{
private Subject|MockObject $subject;
private Subject $subject;
private UserRepository|MockObject $userRepository;
private AdminRepository|MockObject $adminRepository;
private AuthorizationInterface|MockObject $authorization;
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/App/Middleware/DeprecationMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

class DeprecationMiddlewareTest extends TestCase
{
private Subject|MockObject $subject;
private Subject $subject;
private ServerRequestInterface|MockObject $request;
private RequestHandlerInterface|MockObject $handler;
private ResponseInterface $response;
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/User/Service/UserServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

class UserServiceTest extends TestCase
{
private Subject|MockObject $subject;
private Subject $subject;
private UserRoleService|MockObject $userRoleService;
private UserRepository|MockObject $userRepository;
private UserDetailRepository|MockObject $userDetailRepository;
Expand Down