Ben PHP Codeigniter framework kullanıyorum. PHPDoc @ özelliğini kullanarak otomatik olarak tamamla İçin Bir Model yöntemleri yüklemek için bir yol olup olmadığını merak ediyordum.
Ne demek ....
class abc_controller extends Controller {
/**
* @property Model1
*/
function func() {
$this->load->model("Model1"); // I am loading the model here
$result = $this->Model1->getIds();
// When I type Model1 in the statement above, it should popup
// an autocompletion box populated with all the methods of Model1
}
}
Ben Cakephp üzerinde çalışırken NetBeans kullanarak böyle bir şey yaptım. Böyle bir şey CodeIgniter için mümkün olup olmadığını ben / de merak ediyordum
Selamlar