Completed
Push — master ( 0ec6f2...04a4d1 )
by Tom
02:21
created
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
 		$cachedOutput = $this->loadTemplate();
60 60
 		//To be a valid XML document it must have a root element, automatically wrap it in <template> to ensure it does
61
-		$template = new Template($this->isValidDoc($cachedOutput['body']) ? str_ireplace('<!doctype', '<!DOCTYPE', $cachedOutput['body']) : '<template>' . $cachedOutput['body'] . '</template>' );
61
+		$template = new Template($this->isValidDoc($cachedOutput['body']) ? str_ireplace('<!doctype', '<!DOCTYPE', $cachedOutput['body']) : '<template>'.$cachedOutput['body'].'</template>');
62 62
 		$this->tssCache = new TSSCache($this->cache, $template->getPrefix());
63 63
 		$valueParser = new Parser\Value($functionSet);
64 64
 		$this->config = new Config($functionSet, $valueParser, $elementData, new Hook\Formatter(), new Parser\CssToXpath($functionSet, $template->getPrefix(), md5($this->tss)), $this->filePath, $headers);
Please login to merge, or discard this patch.