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 - PHP Formatting: Wrap after ( and before )
Summary: PHP Formatting: Wrap after ( and before )
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Formatting & Indentation (show other bugs)
Version: 7.3
Hardware: PC Linux
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-04 22:38 UTC by bfrohs
Modified: 2013-03-07 06:50 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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
        ) {

}
```