mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #14507 from JakubOnderka/patch-1
2.x: Fix argument order for implode method
This commit is contained in:
commit
1ceb2107b1
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