Completed
Branch master (ec3ffa)
by Michael
06:45
created
src/Console/Commands/MakeUser.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.