mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix argument order for implode method
Different order is deprecated and will cause fatal error in PHP8
This commit is contained in:
parent
785734e052
commit
fc3b50c523
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ class ConsoleOutput {
|
|||
$styleInfo[] = static::$_options[$option];
|
||||
}
|
||||
}
|
||||
return "\033[" . implode($styleInfo, ';') . 'm' . $matches['text'] . "\033[0m";
|
||||
return "\033[" . implode(';', $styleInfo) . 'm' . $matches['text'] . "\033[0m";
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue