From befc68d8c0ee869474c803ba8935673ae8546abe Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Wed, 29 Apr 2026 10:16:02 +0200 Subject: [PATCH] fix: Run cs:fix Signed-off-by: Marcel Klehr --- tests/Core/Command/TaskProcessing/WorkerCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Core/Command/TaskProcessing/WorkerCommandTest.php b/tests/Core/Command/TaskProcessing/WorkerCommandTest.php index 0e41f15682f..a83418338d1 100644 --- a/tests/Core/Command/TaskProcessing/WorkerCommandTest.php +++ b/tests/Core/Command/TaskProcessing/WorkerCommandTest.php @@ -37,7 +37,7 @@ class WorkerCommandTest extends TestCase { $this->logger = $this->createMock(LoggerInterface::class); $this->appConfig = $this->createMock(IAppConfig::class); $this->timeFactory = $this->createMock(ITimeFactory::class); - $this->timeFactory->method('now')->willReturnCallback(fn() => new \DateTimeImmutable()); + $this->timeFactory->method('now')->willReturnCallback(fn () => new \DateTimeImmutable()); $this->command = new WorkerCommand($this->manager, $this->logger, $this->appConfig, $this->timeFactory); }