Programming Language PHP
Namespace ZenCodex\ComposerMirror
Class Console
Method/Function log
Total Examples 4
4 code examples of PHP ZenCodex\ComposerMirror\Console::log 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');
}