@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * Determine if the given email address already exists. |
76 | 76 | * |
77 | 77 | * @param string $email |
78 | - * @return bool |
|
78 | + * @return boolean|null |
|
79 | 79 | * |
80 | 80 | * @throws \Dyrynda\Artisan\Exceptions\MakeUserException |
81 | 81 | */ |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * Normalise the given (database) field input value. |
113 | 113 | * |
114 | 114 | * @param mixed $value |
115 | - * @return mixed |
|
115 | + * @return boolean|string |
|
116 | 116 | */ |
117 | 117 | private function normaliseValue($value) |
118 | 118 | { |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Exception; |
6 | 6 | use Illuminate\Console\Command; |
7 | -use Illuminate\Support\Facades\DB; |
|
8 | 7 | use Illuminate\Support\Facades\Password; |
9 | 8 | use Dyrynda\Artisan\Exceptions\MakeUserException; |
10 | 9 |