| Summary: | Auto-complete of PHPDoc comments doesn't work for php ends with "/" and "*" | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Zhongwei Zhao <zhaozhongwei> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | gadi |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed in head Retested at PDT-2.2.0.v20100504
It seems to not be fixed
When used the example code after pressing enter key caret is going after p character at next line where is defined public function and no finished PHPDoc comments - look bellow code:
<?php
class A {
/**
p|ublic function test() { //with "|" is marked caret
}
}
*
Reopened by
Teodor Kirkov
teodor.k@zend.com
fixed Verified fixed. Kalin Yanev kalin.a@zend.com |
use the following code <?php class A { /**| public function test() { } } *