Currently, when there's a function with multiple (long) parameters, we write them all on 1 line, because otherwise it would count for the file-max-size-limit we have. Example:
public function testFunction($one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten)
{
}
As you can see, this counts as 3 lines.
What we would like to have is this:
public function testFunction(
$one,
$two,
$three,
$four,
$five,
$six,
$seven,
$eight,
$nine,
$ten
) {
}
And still have it count as 3 lines instead of 13
Would that be possible to have an option to handle this?
Thanks!