Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 318641 - [Content Assist] No content assist for simple class
Summary: [Content Assist] No content assist for simple class
Status: CLOSED INVALID
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P1 normal (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-01 15:05 EDT by Roy Ganor CLA
Modified: 2020-05-14 10:16 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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