4 code examples of PHP ZenCodex\ComposerMirror\Console extracted from open source projects
public static function info($str)
{
Console::log($str);
}
public static function warn($str)
{
Console::log($str, 'yellow');
}
public static function debug($str)
{
Console::log($str, 'light_green');
}
public static function error($str)
{
Console::log($str, 'red');
}