Code Duplication    Length = 3-3 lines in 2 locations

src/PhpSpreadsheet/Reader/Excel2003XML.php 2 locations

@@ 468-470 (lines=3) @@
465
                                case 'Size':
466
                                    $this->styles[$styleID]['font']['size'] = $styleAttributeValue;
467
                                    break;
468
                                case 'Color':
469
                                    $this->styles[$styleID]['font']['color']['rgb'] = substr($styleAttributeValue, 1);
470
                                    break;
471
                                case 'Bold':
472
                                    $this->styles[$styleID]['font']['bold'] = true;
473
                                    break;
@@ 488-490 (lines=3) @@
485
                    case 'Interior':
486
                        foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) {
487
                            switch ($styleAttributeKey) {
488
                                case 'Color':
489
                                    $this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1);
490
                                    break;
491
                            }
492
                        }
493
                        break;