mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-24 21:44:59 +00:00
init CLI helper
This commit is contained in:
parent
dcf15fb49f
commit
c5b4bebd98
29
library/cli.php
Normal file
29
library/cli.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
class CLI {
|
||||
|
||||
public static function default(string $string) {
|
||||
|
||||
echo sprintf("%s", $string) . PHP_EOL;
|
||||
}
|
||||
|
||||
public static function notice(string $string) {
|
||||
|
||||
echo sprintf("\033[36ms%s\033[0m", $string) . PHP_EOL;
|
||||
}
|
||||
|
||||
public static function warning(string $string) {
|
||||
|
||||
echo sprintf("\033[33m%s\033[0m", $string) . PHP_EOL;
|
||||
}
|
||||
|
||||
public static function danger(string $string) {
|
||||
|
||||
echo sprintf("\033[31m%s\033[31m", $string) . PHP_EOL;
|
||||
}
|
||||
|
||||
public static function success(string $string) {
|
||||
|
||||
echo sprintf("\033[32m%s\033[32m", $string) . PHP_EOL;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user