diff --git a/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php b/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php index f29adc15..a57a3f78 100644 --- a/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php +++ b/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php @@ -11,12 +11,7 @@ class ApplicationConfigCustomizer implements ConfigCustomizerInterface { use StringUtilsTrait; - /** - * @param SymfonyStyle $io - * @param CustomizableAppConfig $appConfig - * @return void - */ - public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig) + public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void { $io->title('APPLICATION'); diff --git a/module/Installer/src/Config/Plugin/ConfigCustomizerInterface.php b/module/Installer/src/Config/Plugin/ConfigCustomizerInterface.php index 015f767b..908f6f90 100644 --- a/module/Installer/src/Config/Plugin/ConfigCustomizerInterface.php +++ b/module/Installer/src/Config/Plugin/ConfigCustomizerInterface.php @@ -8,10 +8,5 @@ use Symfony\Component\Console\Style\SymfonyStyle; interface ConfigCustomizerInterface { - /** - * @param SymfonyStyle $io - * @param CustomizableAppConfig $appConfig - * @return void - */ - public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig); + public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void; } diff --git a/module/Installer/src/Config/Plugin/DatabaseConfigCustomizer.php b/module/Installer/src/Config/Plugin/DatabaseConfigCustomizer.php index 663ffbe0..c117c32d 100644 --- a/module/Installer/src/Config/Plugin/DatabaseConfigCustomizer.php +++ b/module/Installer/src/Config/Plugin/DatabaseConfigCustomizer.php @@ -3,7 +3,6 @@ declare(strict_types=1); namespace Shlinkio\Shlink\Installer\Config\Plugin; -use Shlinkio\Shlink\Installer\Config\Plugin\ConfigCustomizerInterface; use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\Filesystem\Exception\IOException; @@ -28,12 +27,9 @@ class DatabaseConfigCustomizer implements ConfigCustomizerInterface } /** - * @param SymfonyStyle $io - * @param CustomizableAppConfig $appConfig - * @return void * @throws IOException */ - public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig) + public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void { $io->title('DATABASE'); diff --git a/module/Installer/src/Config/Plugin/LanguageConfigCustomizer.php b/module/Installer/src/Config/Plugin/LanguageConfigCustomizer.php index 64582de8..1a7a2de4 100644 --- a/module/Installer/src/Config/Plugin/LanguageConfigCustomizer.php +++ b/module/Installer/src/Config/Plugin/LanguageConfigCustomizer.php @@ -3,7 +3,6 @@ declare(strict_types=1); namespace Shlinkio\Shlink\Installer\Config\Plugin; -use Shlinkio\Shlink\Installer\Config\Plugin\ConfigCustomizerInterface; use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig; use Symfony\Component\Console\Style\SymfonyStyle; @@ -11,12 +10,7 @@ class LanguageConfigCustomizer implements ConfigCustomizerInterface { private const SUPPORTED_LANGUAGES = ['en', 'es']; - /** - * @param SymfonyStyle $io - * @param \Shlinkio\Shlink\Installer\Model\CustomizableAppConfig $appConfig - * @return void - */ - public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig) + public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void { $io->title('LANGUAGE'); diff --git a/module/Installer/src/Config/Plugin/UrlShortenerConfigCustomizer.php b/module/Installer/src/Config/Plugin/UrlShortenerConfigCustomizer.php index d3737d66..729ec2f8 100644 --- a/module/Installer/src/Config/Plugin/UrlShortenerConfigCustomizer.php +++ b/module/Installer/src/Config/Plugin/UrlShortenerConfigCustomizer.php @@ -10,12 +10,7 @@ use function str_shuffle; class UrlShortenerConfigCustomizer implements ConfigCustomizerInterface { - /** - * @param SymfonyStyle $io - * @param CustomizableAppConfig $appConfig - * @return void - */ - public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig) + public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void { $io->title('URL SHORTENER');