Code Duplication    Length = 3-3 lines in 2 locations

src/Console/Commands/MakeUser.php 2 locations

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