aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-06-18 16:33:31 +0200
committerGitHub <noreply@github.com>2024-06-18 16:33:31 +0200
commit5d744456f627ce5ea78ae506863fff337797deea (patch)
tree15c1c983dc8ae4a315efe2b65ba311515c290e4e
parente5ec9d6a7be262d11e613f0e9b5f61e2e3f2e4c7 (diff)
downloadnextcloud-server-5d744456f627ce5ea78ae506863fff337797deea.tar.gz
nextcloud-server-5d744456f627ce5ea78ae506863fff337797deea.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>
-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 f84fb39c966..10abbde6c92 100644
--- a/tests/lib/Route/RouterTest.php
+++ b/tests/lib/Route/RouterTest.php
@@ -40,8 +40,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 */