From 5337eb48e74f4faa3d48596059116dca7ccbcd43 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 6 Oct 2018 11:43:34 +0200 Subject: [PATCH] Added missing type hint --- .../Installer/src/Config/Plugin/ApplicationConfigCustomizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php b/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php index 2e56d1e2..c7987284 100644 --- a/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php +++ b/module/Installer/src/Config/Plugin/ApplicationConfigCustomizer.php @@ -64,7 +64,7 @@ class ApplicationConfigCustomizer implements ConfigCustomizerInterface . 'have more than a specific amount of visits?' ); case self::VISITS_THRESHOLD: - return $io->ask( + return (int) $io->ask( 'What is the amount of visits from which the system will not allow short URLs to be deleted?', 15 );