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 171254 - PHP Class Formatting
Summary: PHP Class Formatting
Status: RESOLVED DUPLICATE of bug 162320
Alias: None
Product: php
Classification: Unclassified
Component: Formatting & Indentation (show other bugs)
Version: 6.x
Hardware: PC Windows Vista
: P3 blocker (vote)
Assignee: Tomasz Slota
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-01 13:09 UTC by anicka1354
Modified: 2009-09-01 13:30 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description anicka1354 2009-09-01 13:09:51 UTC
Some parts of the PHP auto format tool isn't working right in NetBeans 6.7. Formatter always incorrect format first
class field or first class method comments.

Bad:
class PHPClass {

/**
 * My Field Description
 * @var string
 */
    private $myField;
    
}
Good:
class PHPClass {

   /**
    * My Field Description
    * @var string
    */
    private $myField;
    
}
Comment 1 Tomasz Slota 2009-09-01 13:30:58 UTC

*** This issue has been marked as a duplicate of 162320 ***