These are helper files for code completion in phpStorm with some Open Source Software that I work with.
* CodeIgniter CI_phpStorm.php * phpBB3 phpBB3.php phpBB3 Instructions * WordPress wpdb_docs.php * WordPress example.php Some example fixes
Thought I would mention I checked NetBeans 7.1 with CI and the CI_phpStorm.php helps NetBeans with code completion as well .
- /system/core/Controller.php
- /system/core/Model.php
- /system/database/DB_active_rec.php
You should now have code completion.
Add your models to the docBlock
Example
@property membership_model $membership_model
membership_model is the model class and $membership_model will be the propery you use to instance it.
Example
$this->membership_model->get_records();
This will give you code completion for your model methods.