Colours::off PHP Method

off() public static method

public static off ( )
    public static function off()
    {
        return "";
    }

Usage Example

Exemplo n.º 1
0
/**
 * Displays an error message and exits.
 */
function die_with_error($error, $help = '')
{
    echo Colours::fg('red');
    echo "Error: {$error}\n";
    echo Colours::off();
    if (!empty($help)) {
        echo "\n{$help}\n";
    }
    exit(1);
}
All Usage Examples Of Colours::off