style: fix whitespace

This commit is contained in:
Torsten Dittmann 2022-02-16 16:19:27 +01:00
parent 79c79cd96e
commit d2eb456295

View file

@ -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';