Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 325068 - phpDoc @property tag not working.
Summary: phpDoc @property tag not working.
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows Server 2003
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact: Ilina Stefanova CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-09-13 01:48 EDT by andsky CLA
Modified: 2020-05-14 11:17 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description andsky CLA 2010-09-13 01:48:11 EDT
Build Identifier: I20100608-0911

<?php
/**
 * test
 * Enter description here ...
 * @author Administrator
 * @property T $t
 *
 */
class test {

    function __set($name,$value)
    {
        return $this->$name = $value;
    }

    public function yes()
    {
        $this->t->test();
        //OK
    }
}

class T {
    function test()
    {
        return false;
    }
}

class notWork extends test{

    function not()
    {
        $this->t->
        //Typing in $t-> does not tell me about the test method.
    }
}



?>

Reproducible: Always
Comment 1 Roy Ganor CLA 2010-09-16 06:58:34 EDT
fixed already in branch/head  (I can't remember the original bug but you will be able to see it fixed in next releases)
Comment 2 Kalin CLA 2011-08-02 10:41:31 EDT
Verified.
Closing...