Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 318643 - [Content Assist] No content assist for function in namespaced class
Summary: [Content Assist] No content assist for function in namespaced 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:08 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:08:51 EDT
1. using the following 

<?php
namespace Example\One {
	class Response {
		function foo() {
		}
	}
}

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

}

2. where the "|" is placed no function proposal for foo()
Comment 1 Zhongwei Zhao CLA 2010-07-02 01:41:42 EDT
it works for
<?php
namespace Example\One {
class Response {
function foo() {
}
}
}

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

}
Comment 2 Roy Ganor CLA 2010-07-04 05:23:27 EDT
my bad, sorry...
Comment 3 Gadi Goldbarg CLA 2010-08-20 11:21:27 EDT
I close it as 'Invalid'.
Kalin Yanev
kalin.a@zend.com