Rector changes return typing

This commit is contained in:
2025-08-27 16:32:44 +02:00
parent da240f5ce5
commit 979b2955f6
93 changed files with 164 additions and 180 deletions

View File

@@ -107,7 +107,7 @@ class CSVFormatter implements FormatterInterface
return $descriptions;
}
public function getName()
public function getName(): string|\Symfony\Contracts\Translation\TranslatableInterface
{
return 'Comma separated values (CSV)';
}
@@ -140,7 +140,7 @@ class CSVFormatter implements FormatterInterface
return $response;
}
public function getType()
public function getType(): string
{
return 'tabular';
}