in src/main/kotlin/com/pestphp/pest/inspections/SuppressExpressionResultUnusedInspection.kt [15:25]
override fun isSuppressedFor(element: PsiElement, toolId: String): Boolean {
if (element !is FunctionReferenceImpl) {
return false
}
if (!element.isPestTestFunction()) {
return false
}
return SUPPRESSED_PHP_INSPECTIONS.contains(toolId)
}