Fixed coding styles

This commit is contained in:
Alejandro Celaya 2022-10-22 20:41:17 +02:00
parent 173420c608
commit a78c59c11a

View File

@ -231,7 +231,7 @@ class ImportedLinksProcessorTest extends TestCase
$counts->skippedCount = 0; $counts->skippedCount = 0;
$this->io->method('text')->willReturnCallback( $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)) { if (str_contains($output, $skippedText)) {
$counts->skippedCount++; $counts->skippedCount++;
} elseif (str_contains($output, $importedText)) { } elseif (str_contains($output, $importedText)) {