diff options
author | Anna <anna@nextcloud.com> | 2024-09-16 00:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 00:11:41 +0200 |
commit | d46f271b1f3971120386591a3489f74b55f7a7ba (patch) | |
tree | b85cded12ba149b5f594ab4d87c14a189065239a /tests/Core/Command/Maintenance/ModeTest.php | |
parent | bdb2fdbe90285fa45c5763367e9ecd3ad3cb41a4 (diff) | |
parent | e4cf430233b971351e6c736813e2fb40382b828d (diff) | |
download | nextcloud-server-d46f271b1f3971120386591a3489f74b55f7a7ba.tar.gz nextcloud-server-d46f271b1f3971120386591a3489f74b55f7a7ba.zip |
Merge pull request #48049 from nextcloud/refactor/void-tests
refactor: Add void return type to PHPUnit test methods
Diffstat (limited to 'tests/Core/Command/Maintenance/ModeTest.php')
-rw-r--r-- | tests/Core/Command/Maintenance/ModeTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Command/Maintenance/ModeTest.php b/tests/Core/Command/Maintenance/ModeTest.php index 08ca1762da1..59b8bbfc045 100644 --- a/tests/Core/Command/Maintenance/ModeTest.php +++ b/tests/Core/Command/Maintenance/ModeTest.php @@ -124,7 +124,7 @@ class ModeTest extends TestCase { bool $currentMaintenanceState, $expectedMaintenanceState, string $expectedOutput - ) { + ): void { $this->config->expects($this->any()) ->method('getSystemValueBool') ->willReturn($currentMaintenanceState); |