| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class App { |
||
| 8 | |||
| 9 | public const EOL = "\n"; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return Cmd |
||
| 13 | */ |
||
| 14 | abstract public function setup(): Cmd; |
||
| 15 | |||
| 16 | 1 | public static function eol(): void { |
|
| 17 | 1 | echo self::EOL; |
|
| 18 | 1 | } |
|
| 19 | |||
| 20 | 1 | public static function echo(string $str, ?string $foreground_color = null): void { |
|
| 33 | 1 | } |
|
| 34 | |||
| 36 | } |