[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.pdt] Code completion...

I don't know if this was brought up before, or what its referred to, but I work with cakePHP a lot, and I run into a problem that I don't get code completion on custom Models when I reference them from the controller.

For example I will have my userModel.php

class MyModel extends AppModel {
   var $name;

}

and in my userController.php I will have

class UserController extends AppController {
    echo $this->MyModel->save($this->form(data);

}


$this->MyModel->[code completion jumps in] does anyone have a glue how to make this work?