At the moment I watch a file
phpStorm says that
are not used.
Can I trust the software and delete that?
Why the coder has not done?
It is not about changing files of others, but to know about this.
Sometimes, when i extend a class, i have to add some things to use, sometimes not.
I try to understand why, when, what ...
Code:
namespace XR\PM\Searcher;
use XF\Mvc\Entity\Entity;
use XF\Mvc\Entity\Finder;
use XF\Mvc\Entity\Manager;
use XF\Searcher\AbstractSearcher;
phpStorm says that
Code:
use XF\Mvc\Entity\Entity;
use XF\Mvc\Entity\Finder;
use XF\Mvc\Entity\Manager;
are not used.
Can I trust the software and delete that?
Why the coder has not done?
It is not about changing files of others, but to know about this.
Sometimes, when i extend a class, i have to add some things to use, sometimes not.
I try to understand why, when, what ...