mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 20:32:26 +08:00

- new local setting to set check variant - new local setting to block pull if code inspector check fails - check is executed before staging - new page to display code inspector results
16 lines
279 B
ABAP
16 lines
279 B
ABAP
INTERFACE zif_abapgit_code_inspector
|
|
PUBLIC.
|
|
|
|
METHODS:
|
|
run
|
|
RETURNING
|
|
VALUE(rt_list) TYPE scit_alvlist
|
|
RAISING
|
|
zcx_abapgit_exception,
|
|
|
|
get_inspection
|
|
RETURNING
|
|
VALUE(ro_inspection) TYPE REF TO cl_ci_inspection.
|
|
|
|
ENDINTERFACE.
|