Passed
Push — master ( 3838f9...a99a98 )
by Arthur
02:21
created
src/DOMQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2850,7 +2850,7 @@  discard block
 block discarded – undo
2850 2850
         foreach ($this->matches as $m) {
2851 2851
             $p = $m;
2852 2852
             while (isset($p->previousSibling) && $p->previousSibling->nodeType == XML_TEXT_NODE) {
2853
-                $p      = $p->previousSibling;
2853
+                $p = $p->previousSibling;
2854 2854
                 $buffer .= $p->textContent;
2855 2855
             }
2856 2856
         }
@@ -2869,7 +2869,7 @@  discard block
 block discarded – undo
2869 2869
         foreach ($this->matches as $m) {
2870 2870
             $n = $m;
2871 2871
             while (isset($n->nextSibling) && $n->nextSibling->nodeType == XML_TEXT_NODE) {
2872
-                $n      = $n->nextSibling;
2872
+                $n = $n->nextSibling;
2873 2873
                 $buffer .= $n->textContent;
2874 2874
             }
2875 2875
         }
Please login to merge, or discard this patch.