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/UpdateTheme.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/UpdateTheme.php')
-rw-r--r-- | tests/Core/Command/Maintenance/UpdateTheme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Command/Maintenance/UpdateTheme.php b/tests/Core/Command/Maintenance/UpdateTheme.php index 25229b8997a..41b95d358d3 100644 --- a/tests/Core/Command/Maintenance/UpdateTheme.php +++ b/tests/Core/Command/Maintenance/UpdateTheme.php @@ -42,7 +42,7 @@ class UpdateThemeTest extends TestCase { $this->command = new UpdateTheme($this->detector, $this->cacheFactory); } - public function testThemeUpdate() { + public function testThemeUpdate(): void { $this->consoleInput->method('getOption') ->with('maintenance:theme:update') ->willReturn(true); |