mirror of https://github.com/YGGverse/YGGo.git
phpyggdrasilcrawlermysqljs-lessspideralt-websphinxopen-sourcedistributedwebsearch-enginecurlparserfts5privacy-orientedsphinxsearchfederativeweb-archivepdo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
667 B
34 lines
667 B
<?php |
|
|
|
class CLI { |
|
|
|
public static function break() { |
|
|
|
echo PHP_EOL; |
|
} |
|
|
|
public static function default(string $string) { |
|
|
|
echo sprintf("%s", $string) . self::break(); |
|
} |
|
|
|
public static function notice(string $string) { |
|
|
|
echo sprintf("\033[36m%s\033[0m", $string) . self::break(); |
|
} |
|
|
|
public static function warning(string $string) { |
|
|
|
echo sprintf("\033[33m%s\033[0m", $string) . self::break(); |
|
} |
|
|
|
public static function danger(string $string) { |
|
|
|
echo sprintf("\033[31m%s\033[0m", $string) . self::break(); |
|
} |
|
|
|
public static function success(string $string) { |
|
|
|
echo sprintf("\033[32m%s\033[0m", $string) . self::break(); |
|
} |
|
} |