From d2eb456295b8dcef792593a6c256f88fbb9947b9 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 16 Feb 2022 16:19:27 +0100 Subject: [PATCH] style: fix whitespace --- src/Appwrite/Network/Validator/URL.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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';