Completed
Pull Request — master (#252)
by
unknown
31s
created
src/Css/Processor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
         if (!empty($matches[1])) {
42 42
             foreach ($matches[1] as $match) {
43
-                $css .= trim($match) . "\n";
43
+                $css .= trim($match)."\n";
44 44
             }
45 45
         }
46 46
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         /** @var \DOMElement $node */
63 63
         foreach ($document->getElementsByTagName('link') as $node) {
64
-            $file = $rootDirectory . '/' . $node->getAttribute('href');
64
+            $file = $rootDirectory.'/'.$node->getAttribute('href');
65 65
 
66 66
             if (\file_exists($file)) {
67 67
                 $css .= \file_get_contents($file);
Please login to merge, or discard this patch.