aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Core/Command/Log
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Core/Command/Log')
-rw-r--r--tests/Core/Command/Log/FileTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Command/Log/FileTest.php b/tests/Core/Command/Log/FileTest.php
index 1286fca35a3..627f2b0e08f 100644
--- a/tests/Core/Command/Log/FileTest.php
+++ b/tests/Core/Command/Log/FileTest.php
@@ -103,7 +103,7 @@ class FileTest extends TestCase {
];
$this->consoleOutput->expects($this->exactly(3))
->method('writeln')
- ->willReturnCallback(function (string $message) use (&$calls) {
+ ->willReturnCallback(function (string $message) use (&$calls): void {
$expected = array_shift($calls);
$this->assertEquals($expected[0], $message);
});