mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 18:16:13 +02:00

[CLEANUP] Use more native property types in the tests (#628)

This commit is contained in:
Oliver Klee 2022-10-10 16:05:06 +02:00 committed by GitHub
parent 0a1a00dd22
commit b3f0eb3f3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Changed
- Upgrade to PHPUnit 9 and PHPCOV 8 (#610)
- Convert functional test fixtures to CSV (#601)
- Use typed properties instead of `@var` annotations (#599)
- Use typed properties instead of `@var` annotations (#599, #612, #628)
- Return `ResponseInterface` in controller actions (#597)
- Replace switchable controller actions with separate plugins (#575)

View file

@ -28,7 +28,7 @@ class TeaControllerTest extends UnitTestCase
/**
* @var TeaController&MockObject&AccessibleObjectInterface
*/
private $subject;
private TeaController $subject;
/**
* @var ObjectProphecy<TemplateView>