Code Duplication    Length = 3-3 lines in 2 locations

Contrib/less.php/Less.php 2 locations

@@ 8269-8271 (lines=3) @@
8266
8267
				if( isset($param['variadic']) ){
8268
					$varargs = array();
8269
					for ($j = $argIndex; $j < $argsLength; $j++) {
8270
						$varargs[] = $args[$j]['value']->compile($env);
8271
					}
8272
					$expression = new Less_Tree_Expression($varargs);
8273
					array_unshift($frame->rules, new Less_Tree_Rule($param['name'], $expression->compile($env)));
8274
				}else{
@@ 8298-8300 (lines=3) @@
8295
			}
8296
8297
			if ( isset($param['variadic']) && $args) {
8298
				for ($j = $argIndex; $j < $argsLength; $j++) {
8299
					$evaldArguments[$j] = $args[$j]['value']->compile($env);
8300
				}
8301
			}
8302
			$argIndex++;
8303
		}