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