You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/vendor/songshenzong/support/src/BashEchoHelpers.php

65 lines
994 B

1 year ago
<?php
use Songshenzong\Support\BashEcho;
if (!function_exists('echoRed')) {
/**
* @param $string
*/
function echoRed($string)
{
BashEcho::echoRed($string);
}
}
if (!function_exists('echoGreen')) {
/**
* @param $string
*/
function echoGreen($string)
{
BashEcho::echoGreen($string);
}
}
if (!function_exists('echoBrown')) {
/**
* @param $string
*/
function echoBrown($string)
{
BashEcho::echoBrown($string);
}
}
if (!function_exists('echoBlue')) {
/**
* @param $string
*/
function echoBlue($string)
{
BashEcho::echoBlue($string);
}
}
if (!function_exists('echoPurple')) {
/**
* @param $string
*/
function echoPurple($string)
{
BashEcho::echoPurple($string);
}
}
if (!function_exists('echoCyan')) {
/**
* @param $string
*/
function echoCyan($string)
{
BashEcho::echoCyan($string);
}
}