We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 5 | enum StepStatus: string |
||
| 6 | { |
||
| 7 | case Passed = 'passed'; |
||
| 8 | case Warning = 'warning'; |
||
| 9 | case Failed = 'failed'; |
||
| 10 | case Skipped = 'skipped'; |
||
| 11 | |||
| 12 | public function label(): string |
||
| 19 | }; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function color(): string |
||
| 29 | }; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function isFailure(): bool |
||
| 35 | } |
||
| 36 | |||
| 37 | public function isWarning(): bool |
||
| 42 |