| 1 | <?php |
||
| 7 | class MakeUserException extends InvalidArgumentException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The supplied email is invalid. |
||
| 11 | * |
||
| 12 | * @param string $email |
||
| 13 | * @return \Dyrynda\Artisan\Exceptions\MakeUserException |
||
| 14 | */ |
||
| 15 | public static function invalidEmail($email) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * The supplied email already exists. |
||
| 22 | * |
||
| 23 | * @param string $email |
||
| 24 | * @return \Dyrynda\Artisan\Exceptions\MakeUserException |
||
| 25 | */ |
||
| 26 | public static function emailExists($email) |
||
| 30 | } |
||
| 31 |