feat: Set min length to 4

This commit is contained in:
overflowerror 2023-12-03 13:37:04 +01:00
parent f9a1419608
commit 9fd3f3f8ec

View file

@ -3,7 +3,7 @@
require_once(ROOT . "/utils/error.php");
const CANDIDATES_PER_ITERATION = 10;
const MIN_LENGTH = 3;
const MIN_LENGTH = 4;
const MAX_LENGTH = 20;
const DEFAULT_SCHEMA = "http://";