Completed
Push — master ( 3c6c3d...38f5f5 )
by Tom
02:21
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)) ;
26
+			$result = $this->callProperty($name, $element, $this->valueParser->parse(trim($value), $element));
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
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 	public function template($val, $element) {
121 121
 		$tssToApply = $this->getTss($val);
122 122
 
123
-		$newTemplate = new \Transphporm\Builder($this->baseDir . $val[0], $this->baseDir . $tssToApply);
123
+		$newTemplate = new \Transphporm\Builder($this->baseDir.$val[0], $this->baseDir.$tssToApply);
124 124
 		$data = $this->getData($element);
125 125
 		$doc = $newTemplate->output($data, true)->body;
126 126
 		if (!empty($val[1])) return $this->templateSubsection($val[1], $doc, $element);
Please login to merge, or discard this patch.