WithImpact sets the impact description
(impact string)
| 179 | |
| 180 | // WithImpact sets the impact description |
| 181 | func (b *IssueBuilder) WithImpact(impact string) *IssueBuilder { |
| 182 | b.issue.Impact = impact |
| 183 | return b |
| 184 | } |
| 185 | |
| 186 | // WithSuggestion sets the fix suggestion |
| 187 | func (b *IssueBuilder) WithSuggestion(suggestion string) *IssueBuilder { |
no outgoing calls