fix: Run cs:fix

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2026-04-29 10:16:02 +02:00 committed by backportbot[bot]
parent 5319537569
commit befc68d8c0

View file

@ -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);
}