| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class GitNotCleanException extends HistoryAnalyserException |
||
| 10 | { |
||
| 11 | private const MESSAGE = <<<TEXT |
||
| 12 | There are modified or new files (to see them run: git status). |
||
| 13 | Either commit these or if the modified/new files have no impact the static analysers output rerun this command with -f flag. |
||
| 14 | |||
| 15 | SARB pins the baseline current git SHA, as files are some modified/new files the current SHA it not representative of the current state of the codebase. |
||
| 16 | TEXT; |
||
| 17 | |||
| 18 | public function __construct() |
||
| 23 |