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

Bug 318643

Summary: [Content Assist] No content assist for function in namespaced 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: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