Conditions | 3 |
Paths | 4 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | final public function setColour($string, $foreground = null, $background = null) |
||
55 | { |
||
56 | $foreground = isset(self::$FOREGROUND[$foreground]) ? "\033[" . self::$FOREGROUND[$foreground] . "m" : ""; |
||
57 | $background = isset(self::$BACKGROUND[$background]) ? "\033[" . self::$BACKGROUND[$background] . "m" : ""; |
||
58 | $lineending = "\033[0m"; |
||
59 | return "{$foreground}{$background}{$string}{$lineending}"; |
||
60 | } |
||
62 |