| Summary: | [Content Assist] No content assist for simple class | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Roy Ganor <ganoro> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED INVALID | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | CC: | gadi |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
it works for
<?php
namespace Example\One {
class Response {
function foo() {
}
}
}
namespace foo {
use Example\One\Response;
$a = new Response();
$a->|
}
same as 318643 I close it as 'Invalid' Kalin Yanev kalin.a@zend.com |
1. using this file: <?php namespace Example\One { class Response { function foo() { } } } namespace foo { use Example\One\Response; $a = new Response() $a->| } 2. no content assist where "|" is placed