Passed
Push — master ( 6f39bc...2ba271 )
by Josh
02:32
created
lib/Caxy/HtmlDiff/HtmlDiff.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
             if ($this->isTag($word)) {
131 131
                 $word = $this->stripTagAttributes($word);
132 132
             }
133
-            if (isset($this->wordIndices[ $word ])) {
134
-                $this->wordIndices[ $word ][] = $i;
133
+            if (isset($this->wordIndices[$word])) {
134
+                $this->wordIndices[$word][] = $i;
135 135
             } else {
136
-                $this->wordIndices[ $word ] = array($i);
136
+                $this->wordIndices[$word] = array($i);
137 137
             }
138 138
         }
139 139
     }
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
             } else {
550 550
                 $firstOrDefault = false;
551 551
                 foreach ($this->config->getSpecialCaseOpeningTags() as $x) {
552
-                    if (preg_match($x, $words[ 0 ])) {
552
+                    if (preg_match($x, $words[0])) {
553 553
                         $firstOrDefault = $x;
554 554
                         break;
555 555
                     }
@@ -557,13 +557,13 @@  discard block
 block discarded – undo
557 557
                 if ($firstOrDefault) {
558 558
                     $specialCaseTagInjection = '<ins class="mod">';
559 559
                     if ($tag == 'del') {
560
-                        unset($words[ 0 ]);
560
+                        unset($words[0]);
561 561
                     }
562
-                } elseif (array_search($words[ 0 ], $this->config->getSpecialCaseClosingTags()) !== false) {
562
+                } elseif (array_search($words[0], $this->config->getSpecialCaseClosingTags()) !== false) {
563 563
                     $specialCaseTagInjection = '</ins>';
564 564
                     $specialCaseTagInjectionIsBefore = true;
565 565
                     if ($tag == 'del') {
566
-                        unset($words[ 0 ]);
566
+                        unset($words[0]);
567 567
                     }
568 568
                 }
569 569
             }
@@ -574,12 +574,12 @@  discard block
 block discarded – undo
574 574
                 $this->content .= $specialCaseTagInjection.implode('', $this->extractConsecutiveWords($words, 'tag'));
575 575
             } else {
576 576
                 $workTag = $this->extractConsecutiveWords($words, 'tag');
577
-                if (isset($workTag[ 0 ]) && $this->isOpeningTag($workTag[ 0 ]) && !$this->isClosingTag($workTag[ 0 ])) {
578
-                    if ($this->stringUtil->strpos($workTag[ 0 ], 'class=')) {
579
-                        $workTag[ 0 ] = str_replace('class="', 'class="diffmod ', $workTag[ 0 ]);
580
-                        $workTag[ 0 ] = str_replace("class='", 'class="diffmod ', $workTag[ 0 ]);
577
+                if (isset($workTag[0]) && $this->isOpeningTag($workTag[0]) && !$this->isClosingTag($workTag[0])) {
578
+                    if ($this->stringUtil->strpos($workTag[0], 'class=')) {
579
+                        $workTag[0] = str_replace('class="', 'class="diffmod ', $workTag[0]);
580
+                        $workTag[0] = str_replace("class='", 'class="diffmod ', $workTag[0]);
581 581
                     } else {
582
-                        $workTag[ 0 ] = str_replace('>', ' class="diffmod">', $workTag[ 0 ]);
582
+                        $workTag[0] = str_replace('>', ' class="diffmod">', $workTag[0]);
583 583
                     }
584 584
                 }
585 585
 
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
         $space = $this->stringUtil->strpos($word, ' ', 1);
773 773
 
774 774
         if ($space) {
775
-            return '<' . $this->stringUtil->substr($word, 1, $space) . '>';
775
+            return '<'.$this->stringUtil->substr($word, 1, $space).'>';
776 776
         }
777 777
 
778 778
         return trim($word, '<>');
@@ -796,15 +796,15 @@  discard block
 block discarded – undo
796 796
 
797 797
         for ($indexInOld = $startInOld; $indexInOld < $endInOld; ++$indexInOld) {
798 798
             $newMatchLengthAt = array();
799
-            $index = $this->oldWords[ $indexInOld ];
799
+            $index = $this->oldWords[$indexInOld];
800 800
             if ($this->isTag($index)) {
801 801
                 $index = $this->stripTagAttributes($index);
802 802
             }
803
-            if (!isset($this->wordIndices[ $index ])) {
803
+            if (!isset($this->wordIndices[$index])) {
804 804
                 $matchLengthAt = $newMatchLengthAt;
805 805
                 continue;
806 806
             }
807
-            foreach ($this->wordIndices[ $index ] as $indexInNew) {
807
+            foreach ($this->wordIndices[$index] as $indexInNew) {
808 808
                 if ($indexInNew < $startInNew) {
809 809
                     continue;
810 810
                 }
@@ -812,8 +812,8 @@  discard block
 block discarded – undo
812 812
                     break;
813 813
                 }
814 814
 
815
-                $newMatchLength = (isset($matchLengthAt[ $indexInNew - 1 ]) ? $matchLengthAt[ $indexInNew - 1 ] : 0) + 1;
816
-                $newMatchLengthAt[ $indexInNew ] = $newMatchLength;
815
+                $newMatchLength = (isset($matchLengthAt[$indexInNew - 1]) ? $matchLengthAt[$indexInNew - 1] : 0) + 1;
816
+                $newMatchLengthAt[$indexInNew] = $newMatchLength;
817 817
 
818 818
                 if ($newMatchLength > $bestMatchSize ||
819 819
                     (
Please login to merge, or discard this patch.
lib/Caxy/HtmlDiff/AbstractDiff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     public function initPurifier($defaultPurifierSerializerCache = null)
128 128
     {
129 129
         if (null !== $this->purifierConfig) {
130
-            $HTMLPurifierConfig  = $this->purifierConfig;
130
+            $HTMLPurifierConfig = $this->purifierConfig;
131 131
         } else {
132 132
             $HTMLPurifierConfig = \HTMLPurifier_Config::createDefault();
133 133
         }
Please login to merge, or discard this patch.