Code Duplication    Length = 5-5 lines in 2 locations

src/voku/helper/HtmlMin.php 2 locations

@@ 1216-1220 (lines=5) @@
1213
    }
1214
1215
    // remove deprecated anchor-jump
1216
    if ($this->doRemoveDeprecatedAnchorName === true) {
1217
      if ($tag === 'a' && $attrName === 'name' && isset($allAttr['id']) && $allAttr['id'] === $attrValue) {
1218
        return true;
1219
      }
1220
    }
1221
1222
    // remove "type=text/css" for css links
1223
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
@@ 1223-1227 (lines=5) @@
1220
    }
1221
1222
    // remove "type=text/css" for css links
1223
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
1224
      if ($tag === 'link' && $attrName === 'type' && $attrValue === 'text/css' && isset($allAttr['rel']) && $allAttr['rel'] === 'stylesheet') {
1225
        return true;
1226
      }
1227
    }
1228
1229
    // remove deprecated script-mime-types
1230
    if ($this->doRemoveDeprecatedTypeFromScriptTag === true) {