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

Summary: PHPDoc is not displayed for class variables properties
Product: php Reporter: Petr Pisl <ppisl>
Component: EditorAssignee: Tomasz Slota <tslota>
Status: RESOLVED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

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 ***