mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 08:28:42 +00:00
style: fix whitespace
This commit is contained in:
parent
79c79cd96e
commit
d2eb456295
1 changed files with 2 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in a new issue