Programming Language PHP

Namespace ZenCodex\ComposerMirror

Class Console

Total Examples 4

4 code examples of PHP ZenCodex\ComposerMirror\Console extracted from open source projects

Was this example useful?
0
                                                    public static function info($str)
    {
        Console::log($str);
    }
                                            
Was this example useful?
0
                                                    public static function warn($str)
    {
        Console::log($str, 'yellow');
    }
                                            
Was this example useful?
0
                                                    public static function debug($str)
    {
        Console::log($str, 'light_green');
    }
                                            
Was this example useful?
0
                                                    public static function error($str)
    {
        Console::log($str, 'red');
    }
                                            
Console's Other Methods
Console's Other Methods