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.
29 lines
581 B
29 lines
581 B
1 year ago
|
<?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;
|
||
|
}
|
||
|
}
|