@@ -18,12 +18,12 @@ require_once __DIR__ . './../vendor/autoload.php';
1818
1919$colors = new Wujunze\Colors();
2020// Test some basic printing with Colors class
21- echo $colors->getColoredString("Testing Colors class, this is purple string on yellow background.", "purple", "yellow") . PHP_EOL ;
22- echo $colors->getColoredString("Testing Colors class, this is blue string on light gray background.", "blue", "light_gray") . PHP_EOL ;
23- echo $colors->getColoredString("Testing Colors class, this is red string on black background.", "red", "black") . PHP_EOL ;
24- echo $colors->getColoredString("Testing Colors class, this is cyan string on green background.", "cyan", "green") . PHP_EOL ;
25- echo $colors->getColoredString("Testing Colors class, this is cyan string on default background.", "cyan") . PHP_EOL ;
26- echo $colors->getColoredString("Testing Colors class, this is default string on cyan background.", null, "cyan") . PHP_EOL ;
21+ echo $colors->getColoredString("Testing Colors class, this is purple string on yellow background.", "purple", "yellow");
22+ echo $colors->getColoredString("Testing Colors class, this is blue string on light gray background.", "blue", "light_gray");
23+ echo $colors->getColoredString("Testing Colors class, this is red string on black background.", "red", "black");
24+ echo $colors->getColoredString("Testing Colors class, this is cyan string on green background.", "cyan", "green");
25+ echo $colors->getColoredString("Testing Colors class, this is cyan string on default background.", "cyan");
26+ echo $colors->getColoredString("Testing Colors class, this is default string on cyan background.", null, "cyan");
2727```
2828
2929## run result
0 commit comments