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 230942

Summary: formatting control structure "if"
Product: php Reporter: Userator
Component: Formatting & IndentationAssignee: Ondrej Brejla <obrejla>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.3   
Hardware: PC   
OS: Windows 7   
Issue Type: ENHANCEMENT Exception Reporter:

Description Userator 2013-06-07 16:28:32 UTC
add the ability to define the formatting of the code:

if ($a > $b) echo 'a > b';
else echo 'a > b';

if ($a > $b) 
	echo 'a > b';
else 
	echo 'a > b';