From a3cbec25db44bf3f6f5ed0da70cb6b62084d111c Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 3 Feb 2017 17:56:02 +0100 Subject: [PATCH] Make MySQL port field optional Last fix for pull request #989. --- src/Install/Console/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Install/Console/InstallCommand.php b/src/Install/Console/InstallCommand.php index 69c0acc68..7d456a24e 100644 --- a/src/Install/Console/InstallCommand.php +++ b/src/Install/Console/InstallCommand.php @@ -135,7 +135,7 @@ class InstallCommand extends AbstractCommand 'database' => 'required|string', 'username' => 'required|string', 'prefix' => 'alpha_dash|max:10', - 'port' => 'required|integer|min:1|max:65535', + 'port' => 'integer|min:1|max:65535', ] );