mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2025-02-23 15:13:10 +08:00
PHP Bug Fixed.
This commit is contained in:
parent
9049bceb4e
commit
93bb3790ac
1 changed files with 5 additions and 5 deletions
|
@ -53,7 +53,7 @@ class GH_LOG {
|
||||||
'hidden' => '8',
|
'hidden' => '8',
|
||||||
);
|
);
|
||||||
|
|
||||||
public static $eof = '\n';
|
static $eof = "\n";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logs a string to console.
|
* Logs a string to console.
|
||||||
|
@ -95,7 +95,7 @@ class GH_LOG {
|
||||||
$colored_string = '';
|
$colored_string = '';
|
||||||
|
|
||||||
if ( isset( self::$foreground_colors[ $foreground_color ] ) ) {
|
if ( isset( self::$foreground_colors[ $foreground_color ] ) ) {
|
||||||
$colored_string .= '\033[' . self::$foreground_colors[ $foreground_color ] . 'm';
|
$colored_string .= "\033[" . self::$foreground_colors[ $foreground_color ] . 'm';
|
||||||
} else {
|
} else {
|
||||||
die( $foreground_color . ' not a valid color' );
|
die( $foreground_color . ' not a valid color' );
|
||||||
}
|
}
|
||||||
|
@ -104,13 +104,13 @@ class GH_LOG {
|
||||||
|
|
||||||
foreach ( $args as $option ) {
|
foreach ( $args as $option ) {
|
||||||
if ( isset( self::$background_colors[ $option ] ) ) {
|
if ( isset( self::$background_colors[ $option ] ) ) {
|
||||||
$colored_string .= '\033[' . self::$background_colors[ $option ] . 'm';
|
$colored_string .= "\033[" . self::$background_colors[ $option ] . 'm';
|
||||||
} elseif ( isset( self::$options[ $option ] ) ) {
|
} elseif ( isset( self::$options[ $option ] ) ) {
|
||||||
$colored_string .= '\033[' . self::$options[ $option ] . 'm';
|
$colored_string .= "\033[" . self::$options[ $option ] . 'm';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$colored_string .= $string . '\033[0m';
|
$colored_string .= $string . "\033[0m";
|
||||||
return $colored_string;
|
return $colored_string;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue