Code Duplication    Length = 5-5 lines in 2 locations

src/voku/helper/HtmlMin.php 2 locations

@@ 563-567 (lines=5) @@
560
    }
561
562
    // remove deprecated anchor-jump
563
    if ($this->doRemoveDeprecatedAnchorName === true) {
564
      if ($tag === 'a' && $attrName === 'name' && isset($allAttr['id']) && $allAttr['id'] === $attrValue) {
565
        return true;
566
      }
567
    }
568
569
    // remove "type=text/css" for css links
570
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
@@ 570-574 (lines=5) @@
567
    }
568
569
    // remove "type=text/css" for css links
570
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
571
      if ($tag === 'link' && $attrName === 'type' && $attrValue === 'text/css' && isset($allAttr['rel']) && $allAttr['rel'] === 'stylesheet') {
572
        return true;
573
      }
574
    }
575
576
    // remove deprecated script-mime-types
577
    if ($this->doRemoveDeprecatedTypeFromScriptTag === true) {