fix IReportFormatter
All checks were successful
CI / build-test (push) Successful in 37s
Release / pack-and-publish (release) Successful in 37s

This commit is contained in:
FrigaT
2025-12-26 23:07:13 +03:00
parent 0267d52d28
commit f103bc4ec4
2 changed files with 3 additions and 3 deletions

View File

@@ -6,5 +6,5 @@ namespace SQLLinter.Infrastructure.Reporters;
public interface IReportFormatter
{
string Format(List<IRuleViolation> violations);
string Format(List<IRuleViolation> violations, BpmnDiagram diagram);
string Format(List<IRuleViolation> violations, BpmnDiagram? diagram);
}