Zend Studio / Eclipse formatting new line on end parenthesis of function invocation

Emines

New Member
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?\[code\] $this->addElement( new Form_Element_Note('test', array( 'value' => 'test' )));\[/code\]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:\[code\] $this->addElement( new Form_Element_Note( 'test', array( 'value' => 'test' ) ) );\[/code\]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..Side Note: If anyone has seen why concatenation in a string breaks formatting, I would appreciate it. Cheers
 
Top