Completed
Branch 2.0 (560c9f)
by Tijs
03:24
created
src/Css/Rule/Processor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @param $string
25
-     * @return mixed|string
24
+     * @param string $string
25
+     * @return string
26 26
      */
27 27
     private function cleanup($string)
28 28
     {
Please login to merge, or discard this patch.
src/CssToInlineStyles.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                 if (
209 209
                     ($existingProperty->isImportant() && $property->isImportant()) &&
210 210
                     ($property->getOriginalSpecificity()->getValue() >=
211
-                     $existingProperty->getOriginalSpecificity()->getValue())
211
+                        $existingProperty->getOriginalSpecificity()->getValue())
212 212
                 ) {
213 213
                     // if both the properties are important we should use the specificity
214 214
                     $cssProperties[$property->getName()] = $property;
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
                 } elseif (
219 219
                     !$existingProperty->isImportant() &&
220 220
                     ($property->getOriginalSpecificity()->getValue() >=
221
-                     $existingProperty->getOriginalSpecificity()->getValue())
221
+                        $existingProperty->getOriginalSpecificity()->getValue())
222 222
                 ) {
223 223
                     // if the existing propert is not important we should check the specificity
224 224
                     $cssProperties[$property->getName()] = $property;
Please login to merge, or discard this patch.