@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public static function ambiguous($parameter) |
14 | 14 | { |
15 | - return new static('Ambiguous phone validation parameter: "' . $parameter . '". This parameter is recognized as an input field and as a phone type. Please rename the input field.'); |
|
15 | + return new static('Ambiguous phone validation parameter: "'.$parameter.'". This parameter is recognized as an input field and as a phone type. Please rename the input field.'); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
@@ -25,6 +25,6 @@ discard block |
||
25 | 25 | { |
26 | 26 | $parameters = Collection::make($parameters); |
27 | 27 | |
28 | - return new static('Invalid phone validation parameters: "' . $parameters->implode(',') . '".'); |
|
28 | + return new static('Invalid phone validation parameters: "'.$parameters->implode(',').'".'); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 | \ No newline at end of file |