我正在尝试删除我的项目中的所有错误和警告,我的
PHPStorm给我的检查工具.
原文链接:https://www.f2er.com/php/132129.html我遇到一个代码段PHPStorm说“未使用的私有方法_xxx”,而实际使用,但是以动态的方式.这是一个简化的片段:
<?PHP class A { private function _iAmUsed() { //Do Stuff... } public function run($whoAreYou) { $methodName = '_iAm' . $whoAreYou; if (method_exists($this,$methodName)) { $this->$methodName(); } } } $a = new A(); $a->run('Used'); ?>
在这个片段中,PHPStorm会告诉我“未使用的私有方法_iAmUsed”,而实际上它被使用…
我怎么可以通过添加PHPDocs或者什么东西,使我的IDE了解我的方法实际上是使用的?
请注意,我给我的“run”调用一个静态字符串,但是我们也可以想象一下:
<?PHP $a->run($_POST['whoYouAre']); //$_POST['whoYouAre'] == 'Used' ?>
非常感谢!