Code Duplication    Length = 5-5 lines in 2 locations

src/voku/helper/HtmlMin.php 2 locations

@@ 1231-1235 (lines=5) @@
1228
    }
1229
1230
    // remove deprecated anchor-jump
1231
    if ($this->doRemoveDeprecatedAnchorName === true) {
1232
      if ($tag === 'a' && $attrName === 'name' && isset($allAttr['id']) && $allAttr['id'] === $attrValue) {
1233
        return true;
1234
      }
1235
    }
1236
1237
    // remove "type=text/css" for css links
1238
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
@@ 1238-1242 (lines=5) @@
1235
    }
1236
1237
    // remove "type=text/css" for css links
1238
    if ($this->doRemoveDeprecatedTypeFromStylesheetLink === true) {
1239
      if ($tag === 'link' && $attrName === 'type' && $attrValue === 'text/css' && isset($allAttr['rel']) && $allAttr['rel'] === 'stylesheet') {
1240
        return true;
1241
      }
1242
    }
1243
1244
    // remove deprecated script-mime-types
1245
    if ($this->doRemoveDeprecatedTypeFromScriptTag === true) {