diff --git a/src/Appwrite/Network/Validator/URL.php b/src/Appwrite/Network/Validator/URL.php index 5933ec83a6..b0f8fa230f 100644 --- a/src/Appwrite/Network/Validator/URL.php +++ b/src/Appwrite/Network/Validator/URL.php @@ -22,6 +22,7 @@ class URL extends Validator { $this->allowedSchemes = $allowedSchemes; } + /** * Get Description * @@ -32,7 +33,7 @@ class URL extends Validator public function getDescription(): string { if (!empty($this->allowedSchemes)) { - return 'Value must be a valid URL with following schemes ('. \implode(', ', $this->allowedSchemes) .')'; + return 'Value must be a valid URL with following schemes (' . \implode(', ', $this->allowedSchemes) . ')'; } return 'Value must be a valid URL';