@@ -1175,8 +1175,8 @@ |
||
1175 | 1175 | } |
1176 | 1176 | |
1177 | 1177 | /** |
1178 | - * @param $html |
|
1179 | - * @param $decodeUtf8Specials |
|
1178 | + * @param string $html |
|
1179 | + * @param boolean $decodeUtf8Specials |
|
1180 | 1180 | * |
1181 | 1181 | * @return string |
1182 | 1182 | */ |
@@ -736,184 +736,184 @@ discard block |
||
736 | 736 | return \in_array($tag_name, self::$optional_end_tags, true) |
737 | 737 | || |
738 | 738 | ( |
739 | - $tag_name === 'li' |
|
739 | + $tag_name === 'li' |
|
740 | 740 | && |
741 | 741 | ( |
742 | - $nextSibling === null |
|
742 | + $nextSibling === null |
|
743 | 743 | || |
744 | 744 | ( |
745 | - $nextSibling instanceof \DOMElement |
|
745 | + $nextSibling instanceof \DOMElement |
|
746 | 746 | && |
747 | 747 | $nextSibling->tagName === 'li' |
748 | - ) |
|
749 | - ) |
|
750 | - ) |
|
748 | + ) |
|
749 | + ) |
|
750 | + ) |
|
751 | 751 | || |
752 | 752 | ( |
753 | - ( |
|
754 | - $tag_name === 'rp' |
|
755 | - ) |
|
753 | + ( |
|
754 | + $tag_name === 'rp' |
|
755 | + ) |
|
756 | 756 | && |
757 | 757 | ( |
758 | - $nextSibling === null |
|
758 | + $nextSibling === null |
|
759 | 759 | || |
760 | 760 | ( |
761 | - $nextSibling instanceof \DOMElement |
|
761 | + $nextSibling instanceof \DOMElement |
|
762 | 762 | && |
763 | 763 | ( |
764 | - $nextSibling->tagName === 'rp' |
|
764 | + $nextSibling->tagName === 'rp' |
|
765 | 765 | || |
766 | 766 | $nextSibling->tagName === 'rt' |
767 | - ) |
|
768 | - ) |
|
769 | - ) |
|
770 | - ) |
|
767 | + ) |
|
768 | + ) |
|
769 | + ) |
|
770 | + ) |
|
771 | 771 | || |
772 | 772 | ( |
773 | - $tag_name === 'tr' |
|
773 | + $tag_name === 'tr' |
|
774 | 774 | && |
775 | 775 | ( |
776 | - $nextSibling === null |
|
776 | + $nextSibling === null |
|
777 | 777 | || |
778 | 778 | ( |
779 | - $nextSibling instanceof \DOMElement |
|
779 | + $nextSibling instanceof \DOMElement |
|
780 | 780 | && |
781 | 781 | $nextSibling->tagName === 'tr' |
782 | - ) |
|
783 | - ) |
|
784 | - ) |
|
782 | + ) |
|
783 | + ) |
|
784 | + ) |
|
785 | 785 | || |
786 | 786 | ( |
787 | - ( |
|
788 | - $tag_name === 'td' |
|
787 | + ( |
|
788 | + $tag_name === 'td' |
|
789 | 789 | || |
790 | 790 | $tag_name === 'th' |
791 | - ) |
|
791 | + ) |
|
792 | 792 | && |
793 | 793 | ( |
794 | - $nextSibling === null |
|
794 | + $nextSibling === null |
|
795 | 795 | || |
796 | 796 | ( |
797 | - $nextSibling instanceof \DOMElement |
|
797 | + $nextSibling instanceof \DOMElement |
|
798 | 798 | && |
799 | 799 | ( |
800 | - $nextSibling->tagName === 'td' |
|
800 | + $nextSibling->tagName === 'td' |
|
801 | 801 | || |
802 | 802 | $nextSibling->tagName === 'th' |
803 | - ) |
|
804 | - ) |
|
805 | - ) |
|
806 | - ) |
|
803 | + ) |
|
804 | + ) |
|
805 | + ) |
|
806 | + ) |
|
807 | 807 | || |
808 | 808 | ( |
809 | - ( |
|
810 | - $tag_name === 'dd' |
|
809 | + ( |
|
810 | + $tag_name === 'dd' |
|
811 | 811 | || |
812 | 812 | $tag_name === 'dt' |
813 | - ) |
|
813 | + ) |
|
814 | 814 | && |
815 | 815 | ( |
816 | - ( |
|
817 | - $nextSibling === null |
|
816 | + ( |
|
817 | + $nextSibling === null |
|
818 | 818 | && |
819 | 819 | $tag_name === 'dd' |
820 | - ) |
|
820 | + ) |
|
821 | 821 | || |
822 | 822 | ( |
823 | - $nextSibling instanceof \DOMElement |
|
823 | + $nextSibling instanceof \DOMElement |
|
824 | 824 | && |
825 | 825 | ( |
826 | - $nextSibling->tagName === 'dd' |
|
826 | + $nextSibling->tagName === 'dd' |
|
827 | 827 | || |
828 | 828 | $nextSibling->tagName === 'dt' |
829 | - ) |
|
830 | - ) |
|
831 | - ) |
|
832 | - ) |
|
829 | + ) |
|
830 | + ) |
|
831 | + ) |
|
832 | + ) |
|
833 | 833 | || |
834 | 834 | ( |
835 | - $tag_name === 'option' |
|
835 | + $tag_name === 'option' |
|
836 | 836 | && |
837 | 837 | ( |
838 | - $nextSibling === null |
|
838 | + $nextSibling === null |
|
839 | 839 | || |
840 | 840 | ( |
841 | - $nextSibling instanceof \DOMElement |
|
841 | + $nextSibling instanceof \DOMElement |
|
842 | 842 | && |
843 | 843 | ( |
844 | - $nextSibling->tagName === 'option' |
|
844 | + $nextSibling->tagName === 'option' |
|
845 | 845 | || |
846 | 846 | $nextSibling->tagName === 'optgroup' |
847 | - ) |
|
848 | - ) |
|
849 | - ) |
|
850 | - ) |
|
847 | + ) |
|
848 | + ) |
|
849 | + ) |
|
850 | + ) |
|
851 | 851 | || |
852 | 852 | ( |
853 | - $tag_name === 'p' |
|
853 | + $tag_name === 'p' |
|
854 | 854 | && |
855 | 855 | ( |
856 | - ( |
|
857 | - $nextSibling === null |
|
856 | + ( |
|
857 | + $nextSibling === null |
|
858 | 858 | && |
859 | 859 | ( |
860 | - $node->parentNode !== null |
|
860 | + $node->parentNode !== null |
|
861 | 861 | && |
862 | 862 | !\in_array( |
863 | - $node->parentNode->nodeName, |
|
864 | - [ |
|
865 | - 'a', |
|
866 | - 'audio', |
|
867 | - 'del', |
|
868 | - 'ins', |
|
869 | - 'map', |
|
870 | - 'noscript', |
|
871 | - 'video', |
|
872 | - ], |
|
873 | - true |
|
874 | - ) |
|
875 | - ) |
|
876 | - ) |
|
863 | + $node->parentNode->nodeName, |
|
864 | + [ |
|
865 | + 'a', |
|
866 | + 'audio', |
|
867 | + 'del', |
|
868 | + 'ins', |
|
869 | + 'map', |
|
870 | + 'noscript', |
|
871 | + 'video', |
|
872 | + ], |
|
873 | + true |
|
874 | + ) |
|
875 | + ) |
|
876 | + ) |
|
877 | 877 | || |
878 | 878 | ( |
879 | - $nextSibling instanceof \DOMElement |
|
879 | + $nextSibling instanceof \DOMElement |
|
880 | 880 | && |
881 | 881 | \in_array( |
882 | - $nextSibling->tagName, |
|
883 | - [ |
|
884 | - 'address', |
|
885 | - 'article', |
|
886 | - 'aside', |
|
887 | - 'blockquote', |
|
888 | - 'dir', |
|
889 | - 'div', |
|
890 | - 'dl', |
|
891 | - 'fieldset', |
|
892 | - 'footer', |
|
893 | - 'form', |
|
894 | - 'h1', |
|
895 | - 'h2', |
|
896 | - 'h3', |
|
897 | - 'h4', |
|
898 | - 'h5', |
|
899 | - 'h6', |
|
900 | - 'header', |
|
901 | - 'hgroup', |
|
902 | - 'hr', |
|
903 | - 'menu', |
|
904 | - 'nav', |
|
905 | - 'ol', |
|
906 | - 'p', |
|
907 | - 'pre', |
|
908 | - 'section', |
|
909 | - 'table', |
|
910 | - 'ul', |
|
911 | - ], |
|
912 | - true |
|
913 | - ) |
|
914 | - ) |
|
915 | - ) |
|
916 | - ); |
|
882 | + $nextSibling->tagName, |
|
883 | + [ |
|
884 | + 'address', |
|
885 | + 'article', |
|
886 | + 'aside', |
|
887 | + 'blockquote', |
|
888 | + 'dir', |
|
889 | + 'div', |
|
890 | + 'dl', |
|
891 | + 'fieldset', |
|
892 | + 'footer', |
|
893 | + 'form', |
|
894 | + 'h1', |
|
895 | + 'h2', |
|
896 | + 'h3', |
|
897 | + 'h4', |
|
898 | + 'h5', |
|
899 | + 'h6', |
|
900 | + 'header', |
|
901 | + 'hgroup', |
|
902 | + 'hr', |
|
903 | + 'menu', |
|
904 | + 'nav', |
|
905 | + 'ol', |
|
906 | + 'p', |
|
907 | + 'pre', |
|
908 | + 'section', |
|
909 | + 'table', |
|
910 | + 'ul', |
|
911 | + ], |
|
912 | + true |
|
913 | + ) |
|
914 | + ) |
|
915 | + ) |
|
916 | + ); |
|
917 | 917 | } |
918 | 918 | |
919 | 919 | protected function domNodeToString(\DOMNode $node): string |
@@ -945,9 +945,9 @@ discard block |
||
945 | 945 | } |
946 | 946 | |
947 | 947 | $html .= '<!DOCTYPE ' . $child->name . '' |
948 | - . ($child->publicId ? ' ' . $tmpTypePublic . ' "' . $child->publicId . '"' : '') |
|
949 | - . ($child->systemId ? ' ' . $tmpTypeSystem . ' "' . $child->systemId . '"' : '') |
|
950 | - . '>'; |
|
948 | + . ($child->publicId ? ' ' . $tmpTypePublic . ' "' . $child->publicId . '"' : '') |
|
949 | + . ($child->systemId ? ' ' . $tmpTypeSystem . ' "' . $child->systemId . '"' : '') |
|
950 | + . '>'; |
|
951 | 951 | } |
952 | 952 | } elseif ($child instanceof \DOMElement) { |
953 | 953 | $html .= \rtrim('<' . $child->tagName . ' ' . $this->domNodeAttributesToString($child)); |
@@ -696,7 +696,7 @@ discard block |
||
696 | 696 | $attr_val = $attribute->value; |
697 | 697 | } |
698 | 698 | |
699 | - $attr_str .= ($omit_quotes ? '' : '"') . $attr_val . ($omit_quotes ? '' : '"'); |
|
699 | + $attr_str .= ($omit_quotes ? '' : '"').$attr_val.($omit_quotes ? '' : '"'); |
|
700 | 700 | $attr_str .= ' '; |
701 | 701 | } |
702 | 702 | } |
@@ -957,21 +957,21 @@ discard block |
||
957 | 957 | $tmpTypePublic = 'PUBLIC'; |
958 | 958 | } |
959 | 959 | |
960 | - $html .= '<!DOCTYPE ' . $child->name . '' |
|
961 | - . ($child->publicId ? ' ' . $tmpTypePublic . ' "' . $child->publicId . '"' : '') |
|
962 | - . ($child->systemId ? ' ' . $tmpTypeSystem . ' "' . $child->systemId . '"' : '') |
|
960 | + $html .= '<!DOCTYPE '.$child->name.'' |
|
961 | + . ($child->publicId ? ' '.$tmpTypePublic.' "'.$child->publicId.'"' : '') |
|
962 | + . ($child->systemId ? ' '.$tmpTypeSystem.' "'.$child->systemId.'"' : '') |
|
963 | 963 | . '>'; |
964 | 964 | } |
965 | 965 | } elseif ($child instanceof \DOMElement) { |
966 | - $html .= \rtrim('<' . $child->tagName . ' ' . $this->domNodeAttributesToString($child)); |
|
967 | - $html .= '>' . $this->domNodeToString($child); |
|
966 | + $html .= \rtrim('<'.$child->tagName.' '.$this->domNodeAttributesToString($child)); |
|
967 | + $html .= '>'.$this->domNodeToString($child); |
|
968 | 968 | |
969 | 969 | if ( |
970 | 970 | !$this->doRemoveOmittedHtmlTags |
971 | 971 | || |
972 | 972 | !$this->domNodeClosingTagOptional($child) |
973 | 973 | ) { |
974 | - $html .= '</' . $child->tagName . '>'; |
|
974 | + $html .= '</'.$child->tagName.'>'; |
|
975 | 975 | } |
976 | 976 | |
977 | 977 | if (!$this->doRemoveWhitespaceAroundTags) { |
@@ -1010,7 +1010,7 @@ discard block |
||
1010 | 1010 | $html .= $child->wholeText; |
1011 | 1011 | } |
1012 | 1012 | } elseif ($child instanceof \DOMComment) { |
1013 | - $html .= '<!--' . $child->textContent . '-->'; |
|
1013 | + $html .= '<!--'.$child->textContent.'-->'; |
|
1014 | 1014 | } |
1015 | 1015 | } |
1016 | 1016 | |
@@ -1102,8 +1102,8 @@ discard block |
||
1102 | 1102 | // Remove extra white-space(s) between HTML attribute(s) |
1103 | 1103 | $html = (string) \preg_replace_callback( |
1104 | 1104 | '#<([^/\s<>!]+)(?:\s+([^<>]*?)\s*|\s*)(/?)>#', |
1105 | - function ($matches) { |
|
1106 | - return '<' . $matches[1] . (string) \preg_replace('#([^\s=]+)(\=([\'"]?)(.*?)\3)?(\s+|$)#s', ' $1$2', $matches[2]) . $matches[3] . '>'; |
|
1105 | + function($matches) { |
|
1106 | + return '<'.$matches[1].(string) \preg_replace('#([^\s=]+)(\=([\'"]?)(.*?)\3)?(\s+|$)#s', ' $1$2', $matches[2]).$matches[3].'>'; |
|
1107 | 1107 | }, |
1108 | 1108 | $html |
1109 | 1109 | ); |
@@ -1118,7 +1118,7 @@ discard block |
||
1118 | 1118 | // ------------------------------------------------------------------------- |
1119 | 1119 | |
1120 | 1120 | $html = (string) \preg_replace_callback( |
1121 | - '/<(?<element>' . $this->protectedChildNodesHelper . ')(?<attributes> [^>]*)?>(?<value>.*?)<\/' . $this->protectedChildNodesHelper . '>/', |
|
1121 | + '/<(?<element>'.$this->protectedChildNodesHelper.')(?<attributes> [^>]*)?>(?<value>.*?)<\/'.$this->protectedChildNodesHelper.'>/', |
|
1122 | 1122 | [$this, 'restoreProtectedHtml'], |
1123 | 1123 | $html |
1124 | 1124 | ); |
@@ -1137,14 +1137,14 @@ discard block |
||
1137 | 1137 | |
1138 | 1138 | $html = \str_replace( |
1139 | 1139 | [ |
1140 | - 'html>' . "\n", |
|
1141 | - "\n" . '<html', |
|
1142 | - 'html/>' . "\n", |
|
1143 | - "\n" . '</html', |
|
1144 | - 'head>' . "\n", |
|
1145 | - "\n" . '<head', |
|
1146 | - 'head/>' . "\n", |
|
1147 | - "\n" . '</head', |
|
1140 | + 'html>'."\n", |
|
1141 | + "\n".'<html', |
|
1142 | + 'html/>'."\n", |
|
1143 | + "\n".'</html', |
|
1144 | + 'head>'."\n", |
|
1145 | + "\n".'<head', |
|
1146 | + 'head/>'."\n", |
|
1147 | + "\n".'</head', |
|
1148 | 1148 | ], |
1149 | 1149 | [ |
1150 | 1150 | 'html>', |
@@ -1163,10 +1163,10 @@ discard block |
||
1163 | 1163 | $replace = []; |
1164 | 1164 | $replacement = []; |
1165 | 1165 | foreach (self::$selfClosingTags as $selfClosingTag) { |
1166 | - $replace[] = '<' . $selfClosingTag . '/>'; |
|
1167 | - $replacement[] = '<' . $selfClosingTag . '>'; |
|
1168 | - $replace[] = '<' . $selfClosingTag . ' />'; |
|
1169 | - $replacement[] = '<' . $selfClosingTag . '>'; |
|
1166 | + $replace[] = '<'.$selfClosingTag.'/>'; |
|
1167 | + $replacement[] = '<'.$selfClosingTag.'>'; |
|
1168 | + $replace[] = '<'.$selfClosingTag.' />'; |
|
1169 | + $replacement[] = '<'.$selfClosingTag.'>'; |
|
1170 | 1170 | } |
1171 | 1171 | $html = \str_replace( |
1172 | 1172 | $replace, |
@@ -1174,7 +1174,7 @@ discard block |
||
1174 | 1174 | $html |
1175 | 1175 | ); |
1176 | 1176 | |
1177 | - $html = (string) \preg_replace('#<\b(' . $CACHE_SELF_CLOSING_TAGS . ')([^>]*+)><\/\b\1>#', '<\\1\\2>', $html); |
|
1177 | + $html = (string) \preg_replace('#<\b('.$CACHE_SELF_CLOSING_TAGS.')([^>]*+)><\/\b\1>#', '<\\1\\2>', $html); |
|
1178 | 1178 | |
1179 | 1179 | // ------------------------------------ |
1180 | 1180 | // check if compression worked |
@@ -1281,7 +1281,7 @@ discard block |
||
1281 | 1281 | } |
1282 | 1282 | |
1283 | 1283 | $this->protectedChildNodes[$counter] = $element->text(); |
1284 | - $element->getNode()->nodeValue = '<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'; |
|
1284 | + $element->getNode()->nodeValue = '<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'; |
|
1285 | 1285 | |
1286 | 1286 | ++$counter; |
1287 | 1287 | } |
@@ -1292,7 +1292,7 @@ discard block |
||
1292 | 1292 | } |
1293 | 1293 | |
1294 | 1294 | $this->protectedChildNodes[$counter] = $element->parentNode()->innerHtml(); |
1295 | - $element->getNode()->parentNode->nodeValue = '<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'; |
|
1295 | + $element->getNode()->parentNode->nodeValue = '<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'; |
|
1296 | 1296 | |
1297 | 1297 | ++$counter; |
1298 | 1298 | } |
@@ -1305,11 +1305,11 @@ discard block |
||
1305 | 1305 | continue; |
1306 | 1306 | } |
1307 | 1307 | |
1308 | - $this->protectedChildNodes[$counter] = '<!--' . $text . '-->'; |
|
1308 | + $this->protectedChildNodes[$counter] = '<!--'.$text.'-->'; |
|
1309 | 1309 | |
1310 | 1310 | /* @var $node \DOMComment */ |
1311 | 1311 | $node = $element->getNode(); |
1312 | - $child = new \DOMText('<' . $this->protectedChildNodesHelper . ' data-' . $this->protectedChildNodesHelper . '="' . $counter . '"></' . $this->protectedChildNodesHelper . '>'); |
|
1312 | + $child = new \DOMText('<'.$this->protectedChildNodesHelper.' data-'.$this->protectedChildNodesHelper.'="'.$counter.'"></'.$this->protectedChildNodesHelper.'>'); |
|
1313 | 1313 | /** @noinspection UnusedFunctionResultInspection */ |
1314 | 1314 | $element->getNode()->parentNode->replaceChild($child, $node); |
1315 | 1315 |
@@ -202,7 +202,7 @@ |
||
202 | 202 | continue; |
203 | 203 | } |
204 | 204 | |
205 | - $attrValue .= \trim($class) . ' '; |
|
205 | + $attrValue .= \trim($class).' '; |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | return \trim($attrValue); |