Make MySQL port field optional

Last fix for pull request #989.
This commit is contained in:
Franz Liedke 2017-02-03 17:56:02 +01:00
parent 2225fdec72
commit a3cbec25db
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -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',
]
);