Code Duplication    Length = 3-3 lines in 2 locations

src/Console/Commands/MakeUser.php 2 locations

@@ 173-175 (lines=3) @@
170
            return;
171
        }
172
173
        if (in_array($value, [1, 'true', true], true)) {
174
            return true;
175
        }
176
177
        if (in_array($value, [0, 'false', false], true)) {
178
            return false;
@@ 177-179 (lines=3) @@
174
            return true;
175
        }
176
177
        if (in_array($value, [0, 'false', false], true)) {
178
            return false;
179
        }
180
181
        return trim($value);
182
    }