From 419adb748b13be18a2c33d61bc56429e19ba179a Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Fri, 2 Feb 2018 11:38:06 +0100 Subject: [PATCH] validation requires nullable now in order to allow null values to pass the validation --- src/Install/Console/InstallCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Install/Console/InstallCommand.php b/src/Install/Console/InstallCommand.php index 61c473f72..636f880a3 100644 --- a/src/Install/Console/InstallCommand.php +++ b/src/Install/Console/InstallCommand.php @@ -147,8 +147,8 @@ class InstallCommand extends AbstractCommand 'host' => 'required', 'database' => 'required|string', 'username' => 'required|string', - 'prefix' => 'alpha_dash|max:10', - 'port' => 'integer|min:1|max:65535', + 'prefix' => 'nullable|alpha_dash|max:10', + 'port' => 'nullable|integer|min:1|max:65535', ] );