| 1 | <?php |
||
| 18 | class Console |
||
| 19 | {
|
||
| 20 | /** |
||
| 21 | * @var ConsoleHelper |
||
| 22 | */ |
||
| 23 | private static $_instance; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return ConsoleHelper |
||
| 27 | */ |
||
| 28 | public static function get() |
||
| 36 | |||
| 37 | public static function styled($style, $text) |
||
| 41 | |||
| 42 | public static function open($style) |
||
| 46 | |||
| 47 | public static function close() |
||
| 51 | |||
| 52 | public static function reset() |
||
| 56 | |||
| 57 | public static function current() |
||
| 61 | |||
| 62 | public static function set($style) |
||
| 66 | } |
||
| 67 |