Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 318641

Summary: [Content Assist] No content assist for simple class
Product: z_Archived Reporter: Roy Ganor <ganoro>
Component: PDTAssignee: 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:

Description Roy Ganor CLA 2010-07-01 15:05:56 EDT
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
Comment 1 Zhongwei Zhao CLA 2010-07-02 01:43:13 EDT
it works for
<?php
namespace Example\One {
class Response {
function foo() {
}
}
}

namespace foo {
use Example\One\Response;
$a = new Response();
$a->|

}
Comment 2 Zhongwei Zhao CLA 2010-07-06 01:26:24 EDT
same as 318643
Comment 3 Gadi Goldbarg CLA 2010-08-20 11:22:14 EDT
I close it as 'Invalid'
Kalin Yanev
kalin.a@zend.com