| Summary: | phpDoc @property tag not working. | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | andsky <andsky888> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | Ilina Stefanova <ilina.s> |
| Severity: | normal | ||
| Priority: | P3 | CC: | ganoro, kalin.a |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows Server 2003 | ||
| Whiteboard: | |||
fixed already in branch/head (I can't remember the original bug but you will be able to see it fixed in next releases) Verified. Closing... |
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