@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | $attr_val = $attribute->value; |
706 | 706 | } |
707 | 707 | |
708 | - $attr_str .= ($omit_quotes ? '' : $quoteTmp) . $attr_val . ($omit_quotes ? '' : $quoteTmp); |
|
708 | + $attr_str .= ($omit_quotes ? '' : $quoteTmp).$attr_val.($omit_quotes ? '' : $quoteTmp); |
|
709 | 709 | $attr_str .= ' '; |
710 | 710 | } |
711 | 711 | } |
@@ -966,21 +966,21 @@ discard block |
||
966 | 966 | $tmpTypePublic = 'PUBLIC'; |
967 | 967 | } |
968 | 968 | |
969 | - $html .= '<!DOCTYPE ' . $child->name . '' |
|
970 | - . ($child->publicId ? ' ' . $tmpTypePublic . ' "' . $child->publicId . '"' : '') |
|
971 | - . ($child->systemId ? ' ' . $tmpTypeSystem . ' "' . $child->systemId . '"' : '') |
|
969 | + $html .= '<!DOCTYPE '.$child->name.'' |
|
970 | + . ($child->publicId ? ' '.$tmpTypePublic.' "'.$child->publicId.'"' : '') |
|
971 | + . ($child->systemId ? ' '.$tmpTypeSystem.' "'.$child->systemId.'"' : '') |
|
972 | 972 | . '>'; |
973 | 973 | } |
974 | 974 | } elseif ($child instanceof \DOMElement) { |
975 | - $html .= \rtrim('<' . $child->tagName . ' ' . $this->domNodeAttributesToString($child)); |
|
976 | - $html .= '>' . $this->domNodeToString($child); |
|
975 | + $html .= \rtrim('<'.$child->tagName.' '.$this->domNodeAttributesToString($child)); |
|
976 | + $html .= '>'.$this->domNodeToString($child); |
|
977 | 977 | |
978 | 978 | if ( |
979 | 979 | !$this->doRemoveOmittedHtmlTags |
980 | 980 | || |
981 | 981 | !$this->domNodeClosingTagOptional($child) |
982 | 982 | ) { |
983 | - $html .= '</' . $child->tagName . '>'; |
|
983 | + $html .= '</'.$child->tagName.'>'; |
|
984 | 984 | } |
985 | 985 | |
986 | 986 | if (!$this->doRemoveWhitespaceAroundTags) { |
@@ -1019,7 +1019,7 @@ discard block |
||
1019 | 1019 | $html .= $child->wholeText; |
1020 | 1020 | } |
1021 | 1021 | } elseif ($child instanceof \DOMComment) { |
1022 | - $html .= '<!--' . $child->textContent . '-->'; |
|
1022 | + $html .= '<!--'.$child->textContent.'-->'; |
|
1023 | 1023 | } |
1024 | 1024 | } |
1025 | 1025 | |
@@ -1111,8 +1111,8 @@ discard block |
||
1111 | 1111 | // Remove extra white-space(s) between HTML attribute(s) |
1112 | 1112 | $html = (string) \preg_replace_callback( |
1113 | 1113 | '#<([^/\s<>!]+)(?:\s+([^<>]*?)\s*|\s*)(/?)>#', |
1114 | - function ($matches) { |
|
1115 | - return '<' . $matches[1] . (string) \preg_replace('#([^\s=]+)(\=([\'"]?)(.*?)\3)?(\s+|$)#s', ' $1$2', $matches[2]) . $matches[3] . '>'; |
|
1114 | + function($matches) { |
|
1115 | + return '<'.$matches[1].(string) \preg_replace('#([^\s=]+)(\=([\'"]?)(.*?)\3)?(\s+|$)#s', ' $1$2', $matches[2]).$matches[3].'>'; |
|
1116 | 1116 | }, |
1117 | 1117 | $html |
1118 | 1118 | ); |
@@ -1127,7 +1127,7 @@ discard block |
||
1127 | 1127 | // ------------------------------------------------------------------------- |
1128 | 1128 | |
1129 | 1129 | $html = (string) \preg_replace_callback( |
1130 | - '/<(?<element>' . $this->protectedChildNodesHelper . ')(?<attributes> [^>]*)?>(?<value>.*?)<\/' . $this->protectedChildNodesHelper . '>/', |
|
1130 | + '/<(?<element>'.$this->protectedChildNodesHelper.')(?<attributes> [^>]*)?>(?<value>.*?)<\/'.$this->protectedChildNodesHelper.'>/', |
|
1131 | 1131 | [$this, 'restoreProtectedHtml'], |
1132 | 1132 | $html |
1133 | 1133 | ); |
@@ -1146,14 +1146,14 @@ discard block |
||
1146 | 1146 | |
1147 | 1147 | $html = \str_replace( |
1148 | 1148 | [ |
1149 | - 'html>' . "\n", |
|
1150 | - "\n" . '<html', |
|
1151 | - 'html/>' . "\n", |
|
1152 | - "\n" . '</html', |
|
1153 | - 'head>' . "\n", |
|
1154 | - "\n" . '<head', |
|
1155 | - 'head/>' . "\n", |
|
1156 | - "\n" . '</head', |
|
1149 | + 'html>'."\n", |
|
1150 | + "\n".'<html', |
|
1151 | + 'html/>'."\n", |
|
1152 | + "\n".'</html', |
|
1153 | + 'head>'."\n", |
|
1154 | + "\n".'<head', |
|
1155 | + 'head/>'."\n", |
|
1156 | + "\n".'</head', |
|
1157 | 1157 | ], |
1158 | 1158 | [ |
1159 | 1159 | 'html>', |
@@ -1172,10 +1172,10 @@ discard block |
||
1172 | 1172 | $replace = []; |
1173 | 1173 | $replacement = []; |
1174 | 1174 | foreach (self::$selfClosingTags as $selfClosingTag) { |
1175 | - $replace[] = '<' . $selfClosingTag . '/>'; |
|
1176 | - $replacement[] = '<' . $selfClosingTag . '>'; |
|
1177 | - $replace[] = '<' . $selfClosingTag . ' />'; |
|
1178 | - $replacement[] = '<' . $selfClosingTag . '>'; |
|
1175 | + $replace[] = '<'.$selfClosingTag.'/>'; |
|
1176 | + $replacement[] = '<'.$selfClosingTag.'>'; |
|
1177 | + $replace[] = '<'.$selfClosingTag.' />'; |
|
1178 | + $replacement[] = '<'.$selfClosingTag.'>'; |
|
1179 | 1179 | } |
1180 | 1180 | $html = \str_replace( |
1181 | 1181 | $replace, |
@@ -1183,7 +1183,7 @@ discard block |
||
1183 | 1183 | $html |
1184 | 1184 | ); |
1185 | 1185 | |
1186 | - $html = (string) \preg_replace('#<\b(' . $CACHE_SELF_CLOSING_TAGS . ')([^>]*+)><\/\b\1>#', '<\\1\\2>', $html); |
|
1186 | + $html = (string) \preg_replace('#<\b('.$CACHE_SELF_CLOSING_TAGS.')([^>]*+)><\/\b\1>#', '<\\1\\2>', $html); |
|
1187 | 1187 | |
1188 | 1188 | // ------------------------------------ |
1189 | 1189 | // check if compression worked |
@@ -1290,7 +1290,7 @@ discard block |
||
1290 | 1290 | } |
1291 | 1291 | |
1292 | 1292 | $this->protectedChildNodes[$counter] = $element->text(); |
1293 | - $element->getNode()->nodeValue = '<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'; |
|
1293 | + $element->getNode()->nodeValue = '<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'; |
|
1294 | 1294 | |
1295 | 1295 | ++$counter; |
1296 | 1296 | } |
@@ -1301,7 +1301,7 @@ discard block |
||
1301 | 1301 | } |
1302 | 1302 | |
1303 | 1303 | $this->protectedChildNodes[$counter] = $element->parentNode()->innerHtml(); |
1304 | - $element->getNode()->parentNode->nodeValue = '<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'; |
|
1304 | + $element->getNode()->parentNode->nodeValue = '<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'; |
|
1305 | 1305 | |
1306 | 1306 | ++$counter; |
1307 | 1307 | } |
@@ -1314,11 +1314,11 @@ discard block |
||
1314 | 1314 | continue; |
1315 | 1315 | } |
1316 | 1316 | |
1317 | - $this->protectedChildNodes[$counter] = '<!--' . $text . '-->'; |
|
1317 | + $this->protectedChildNodes[$counter] = '<!--'.$text.'-->'; |
|
1318 | 1318 | |
1319 | 1319 | /* @var $node \DOMComment */ |
1320 | 1320 | $node = $element->getNode(); |
1321 | - $child = new \DOMText('<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'); |
|
1321 | + $child = new \DOMText('<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'); |
|
1322 | 1322 | /** @noinspection UnusedFunctionResultInspection */ |
1323 | 1323 | $element->getNode()->parentNode->replaceChild($child, $node); |
1324 | 1324 |