Code Duplication    Length = 10-11 lines in 2 locations

src/MenuStyle.php 1 location

@@ 333-343 (lines=11) @@
330
        return $this->fg;
331
    }
332
333
    public function setFg(string $fg, string $fallback = null) : self
334
    {
335
        $this->fg = ColourUtil::validateColour(
336
            $this->terminal,
337
            $fg,
338
            $fallback
339
        );
340
        $this->generateColoursSetCode();
341
342
        return $this;
343
    }
344
345
    public function getBg()
346
    {

src/Builder/CliMenuBuilder.php 1 location

@@ 174-183 (lines=10) @@
171
        return $this;
172
    }
173
174
    public function setForegroundColour(string $colour, string $fallback = null) : self
175
    {
176
        $this->style['fg'] = ColourUtil::validateColour(
177
            $this->terminal,
178
            $colour,
179
            $fallback
180
        );
181
182
        return $this;
183
    }
184
185
    public function setWidth(int $width) : self
186
    {