aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-06-18 16:33:31 +0200
committerDaniel <mail@danielkesselberg.de>2024-07-10 14:38:34 +0200
commit82f9c66dfcbc1cb886bfe94e25cd76beab2d9df0 (patch)
tree91b3abf36e665665f2b67e94947fb3b984d7bb44 /tests
parent1226e79cf1ecea286911851a7c3729b4ae54c8cd (diff)
downloadnextcloud-server-82f9c66dfcbc1cb886bfe94e25cd76beab2d9df0.tar.gz
nextcloud-server-82f9c66dfcbc1cb886bfe94e25cd76beab2d9df0.zip
fix(tests): Strong type property $router in RouterTest
Co-authored-by: Kate <26026535+provokateurin@users.noreply.github.com> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Route/RouterTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lib/Route/RouterTest.php b/tests/lib/Route/RouterTest.php
index f2099b2cc5a..bb322e51bb7 100644
--- a/tests/lib/Route/RouterTest.php
+++ b/tests/lib/Route/RouterTest.php
@@ -39,8 +39,7 @@ use Test\TestCase;
* @package Test\Route
*/
class RouterTest extends TestCase {
- /** @var Router */
- private $router;
+ private Router $router;
protected function setUp(): void {
parent::setUp();
/** @var LoggerInterface $logger */