Completed
Push — master ( 6134fd...2d04cd )
by Tom
04:40 queued 02:18
created
src/Hook/PropertyHook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 		if (!$this->pseudoMatcher->matches($element)) return;
24 24
 
25 25
 		foreach ($this->rules as $name => $value) {
26
-			$result = $this->callProperty($name, $element, $this->valueParser->parse(trim($value), $element,$this->rules)) ;
26
+			$result = $this->callProperty($name, $element, $this->valueParser->parse(trim($value), $element, $this->rules));
27 27
 			if ($result === false) break;
28 28
 		}
29 29
 	}
Please login to merge, or discard this patch.
src/Hook/DataFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
 		else $tss = '';
118 118
 		//Create a document to mimic the structure of the parent template
119 119
 		
120
-		$newDocument = $this->createDummyTemplateDoc($element, $this->baseDir . $val[0]);		
120
+		$newDocument = $this->createDummyTemplateDoc($element, $this->baseDir.$val[0]);		
121 121
 
122 122
 		//Build a new template using the $newDocument
123 123
 		$newTemplate = new \Transphporm\Builder($newDocument->saveXml(), $tss);
Please login to merge, or discard this patch.