Natan Felles

Results 27 comments of Natan Felles

No needed. CodeIgniter 4 has namespaces so the IDE can index it.

While the "default" properties are unnecessary in your use case, this properties can be accessed by your model, like: ```php $this->PModel->input->get('foo'); ``` It occurs because this properties exists in the...

I'm not sure. But I know that is possible to configure it to show the autocompletion lexicographically. For example, you type `$this->md` and the panel will show properties/methods with priority...

https://www.jetbrains.com/help/phpstorm/settings-code-completion.html

Yes. If you have the msg index in a data array: ``` php ```

> Why do i need to write so much code to get autocomplition in a view? @glorsh66 You don't need. But you can. This will will make PhpStorm easier to...

I do not know. And, I think that some classes have different names. You will need to check the [User Guide](codeigniter.com/userguide2) and do some updates, but... Why do not start...

I never tested. Open the _phpstorm.php_ file and see how it is done. You could customize your own file according with CI 2 and your project classes, if you want....

Yes. Just add something like: ``` php /** * Class Profile * @property General_model $general * @property Profile_model $profile */ class Profile extends CI_Controller { public function __construct() { parent::__construct();...

This file too works in Netbeans if do you want. :)