So, this is how function invocations are setup with my custom formatting:
Eclipse does this regardless, notice at the end the 3 parentheses, together. arg?
$this->addElement(
new Form_Element_Note('test',
array(
'value' => 'test'
)));
I want to figure this out in the formatter, but I literally see nothing aside from chaining method invocations that could accomplish this style of formatting:
$this->addElement(
new Form_Element_Note(
'test',
array(
'value' => 'test'
)
)
);
Notice this applies to object and function invocations. Any ideas how to edit this manually? I couldn't find anything in the documentation that could do this, but it would surely seem like something possible..