Code Duplication    Length = 3-3 lines in 2 locations

src/Console/Commands/MakeUser.php 2 locations

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