PHP Objects and their Functions

luker

New Member
I am using PHP 5 now and I am exuberant to use OOP in PHP 5. I encounter a problem. I got few classes and few functions inside them. Few functions require arguments to be passed which are object of those classes I wrote myself. Arguments aren't strictly typed I noticed. Is there a way to make it strictly typed so that at compile time I could use Intellisense?Example:\[code\]class Test{ public $IsTested; public function Testify($test) { //I can access like $test->$IsTested but this is what not IDE getting it //I would love to type $test-> only and IDE will list me available options including $IsTested }}\[/code\]
 
Back
Top