I am using PHPStorm IDE, and it has a very useful feature, inspect the errors, problems in php code.
I know how can i turn off the options globally. For example, here is a simple code:
require_once ('../config/configuration.inc');
define ("LIB_PATH", BASE_PATH . '/libraries/') ; //originally in conf i put here for test
require_once (LIB_PATH.'JFMF/Core/JFMF_APP.php');
$App = new JFMF_App();
The inspector warn me, i should define the JFMF_APP class, and also notice me about: i shold define LIB_PATH, what i don't undestand, because the definition is there, and if it is not enough, require_once warn me to use PHPDoc to resolve this problem (if i do that doesn't helps), and some other annoying warnings.
Anyhow, focus on the problem, originally the definition of LIB_PATH in the configuration.inc.
My question is, how can i tell to PHPStorm, if there are an include statement, process it, and register the classes, so my objects come from defined classes. I hope it's understable, my english is not so good.
The code is working code, and run without errors.
Maybe other PHPStorm beginners would know this also.

