Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
9.0
Description
Hi,
This thing has been bugging me for a long time.
I always use "Organize Members" to make my code look clean and readable with 0 effort.
For php, however, some spaces are put in the wrong place.
This is how php is formatted when using "OR":
<?php $tb = FALSE; if ($tb OR ! $tb) ; if ($tb OR ( !$tb)) ;
this is how it is formatted when using "||":
<?php $tb = FALSE; if ($tb || !$tb) ; if ($tb || (!$tb)) ;
As you can see extra spaces are added after "!" and "("
I always use OR/AND keywords as a habit, I'd love to see this fixed
Thanks.
Attachments
Issue Links
- links to