From a78c59c11a78e47ffb3b70a6a86e50a7a406298c Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 22 Oct 2022 20:41:17 +0200 Subject: [PATCH] Fixed coding styles --- module/Core/test/Importer/ImportedLinksProcessorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Core/test/Importer/ImportedLinksProcessorTest.php b/module/Core/test/Importer/ImportedLinksProcessorTest.php index 926901a9..183c54c1 100644 --- a/module/Core/test/Importer/ImportedLinksProcessorTest.php +++ b/module/Core/test/Importer/ImportedLinksProcessorTest.php @@ -231,7 +231,7 @@ class ImportedLinksProcessorTest extends TestCase $counts->skippedCount = 0; $this->io->method('text')->willReturnCallback( - function (string $output) use ($counts, $skippedText, $importedText) { + function (string $output) use ($counts, $skippedText, $importedText): void { if (str_contains($output, $skippedText)) { $counts->skippedCount++; } elseif (str_contains($output, $importedText)) {