Completed
Push — master ( 198800...1a9f17 )
by Propa
07:51
created
src/Exceptions/InvalidParameterException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Exceptions/NumberParseException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
         $exception = new static(
48 48
             libNumberParseException::INVALID_COUNTRY_CODE,
49
-            'Number does not match the provided '. Str::plural('country', count($countries)).'.'
49
+            'Number does not match the provided '.Str::plural('country', count($countries)).'.'
50 50
         );
51 51
 
52 52
         $exception->number = $number;
Please login to merge, or discard this patch.