This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 227006

Summary: PHP Formatting: Wrap after ( and before )
Product: php Reporter: bfrohs
Component: Formatting & IndentationAssignee: Ondrej Brejla <obrejla>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.3   
Hardware: PC   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:

Description bfrohs 2013-03-04 22:38:08 UTC
In the Formatting Options under PHP > Wrapping, there is no way to specify wrapping after ( and before ) for Method Parameters and Array Initializers. This *is* possible for Open and Close Block Brace.

Wanted formatting when wrapping for Method Parameters is set to Always:

```
public function someFunction(
        $a,
        $b
        ) {

}
```