aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-09-23 15:10:30 +0200
committerGitHub <noreply@github.com>2024-09-23 15:10:30 +0200
commit8927510685f59555cf337866370b572934e41408 (patch)
treea62f3441fce0ff3ea51455dba9a6ca0fc207933d /apps/theming
parentd4839b962bad250ab1aa1c40e16c2408ae53a8b2 (diff)
parent98efa3bda838065fb9ff5740f2688fe2b526ae2d (diff)
downloadnextcloud-server-8927510685f59555cf337866370b572934e41408.tar.gz
nextcloud-server-8927510685f59555cf337866370b572934e41408.zip
Merge pull request #48223 from nextcloud/feat/add-rector-config
Add rector config
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/tests/ThemingDefaultsTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php
index 349dd4f16f8..b8b6c6869cd 100644
--- a/apps/theming/tests/ThemingDefaultsTest.php
+++ b/apps/theming/tests/ThemingDefaultsTest.php
@@ -508,7 +508,7 @@ class ThemingDefaultsTest extends TestCase {
$this->config
->expects($this->exactly(2))
->method('setAppValue')
- ->willReturnCallback(function () use ($expectedCalls, &$i) {
+ ->willReturnCallback(function () use ($expectedCalls, &$i): void {
$this->assertEquals($expectedCalls[$i], func_get_args());
$i++;
});