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 154666 - PHPDoc is not displayed for class variables properties
Summary: PHPDoc is not displayed for class variables properties
Status: RESOLVED DUPLICATE of bug 151818
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker with 1 vote (vote)
Assignee: Tomasz Slota
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-05 01:34 UTC by Petr Pisl
Modified: 2009-05-18 17:04 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 Petr Pisl 2008-12-05 01:34:53 UTC
Have a code:

<?php
class Author {
    public $name;
}

/**
 * @property Author $author hello this is doc
 */
class Book { 
    /**
     * Title of the book.
     * @var string
     */
    public $Title;
}

$book = new Book();


When you call the cc for $book-> there is not PHP Doc for $author class variable property
Comment 1 Tomasz Slota 2009-05-18 17:04:39 UTC

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