我有两个类:
class EntityVoter
{
protected function canPutToBlockChain($entity, $viewer)
{
return false;
}
}
class VerificationVoter extends EntityVoter
{
public function canPutToBlockChain($entity, $viewer)
{
return $this->canShare($entity, $viewer);
}
}
PHPMD扫描EntityVoter类并抛出:避免使用未使用的参数,如'$entity','$viewer'。
我的解决方案是创建一个接口:
interface EntityVoterInterface
{
function canPutToBlockChain($entity, $viewer);
}
然后添加@inhericDoc
注解:
class EntityVoter implements EntityVoterInterface
{
/**
* @inheritDoc
*/
protected function canPutToBlockChain($entity, $viewer)
{
return false;
}
}
有没有更好的解决办法?
1条答案
按热度按时间irlmq6kh1#
另一个选项是在方法上隐藏规则的PHPMD警告:
有关详细信息,请参阅PHPMD Suppressing Warnings @ PHP Mess Detector documentation。
我不会使用通配符排除,如
@SuppressWarnings("unused")
,但有针对性的排除是可以的警告链接到第三方代码。