class InvalidParameterException extends \Exception
6
{
7
/**
8
* Ambiguous parameter static constructor.
9
*
10
* @param string $parameter
11
* @return static
12
*/
13
3
public static function ambiguous($parameter)
14
{
15
3
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.');