| 1 | <?php namespace Propaganistas\LaravelPhone\Exceptions;  | 
            ||
| 5 | 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)  | 
            |
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * Invalid parameters static constructor.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @param array|Collection $parameters  | 
            ||
| 22 | * @return static  | 
            ||
| 23 | */  | 
            ||
| 24 | 3 | public static function parameters($parameters)  | 
            |
| 30 | }  |