mirror of
https://github.com/n3w/helpers-functions-cli.git
synced 2025-12-19 20:53:22 +00:00
Fixed call to implode() in display_error_and_exit() to avoid deprecation warning.
This commit is contained in:
parent
593410a68b
commit
630efc99d6
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ if (!function_exists(__NAMESPACE__."\display_error_and_exit")) {
|
|||
"\r\n%s\r\n%s\r\n%s\r\n%s",
|
||||
$emptyLine,
|
||||
$add_background($heading, true),
|
||||
implode($message, PHP_EOL),
|
||||
implode(PHP_EOL, $message),
|
||||
!empty($trace) && count($trace) > 0
|
||||
? PHP_EOL.sprintf("Trace\r\n==========\r\n%s\r\n", Debug\readable_debug_backtrace($trace))
|
||||
: ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue