Completed
Push — master ( 43b17b...60adc6 )
by Richard
02:07
created
src/Parser/ValueResult.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 
109 109
 	//Postprocessing - replace values with null where allowed, or override a value at position
110 110
 	public function postProcess(ValueData $data, $val, $overrideVal, $allowNull) {
111
-        if ($this->getMode() !== Tokenizer::ARG) return;
111
+		if ($this->getMode() !== Tokenizer::ARG) return;
112 112
 		foreach ($this->getResult() as $i => $value) {
113 113
 			if (is_scalar($value)) {
114 114
 				$val = ($overrideVal == $val) ? $data->read($value) : $overrideVal;
Please login to merge, or discard this patch.