mirror of
https://github.com/filp/whoops.git
synced 2026-08-30 20:17:11 +00:00
Merge pull request #38 from protecinnovations/hotfix/namespacing_issue
Use correct function for joining arrays
This commit is contained in:
@@ -198,7 +198,7 @@ class PrettyPageHandler extends Handler
|
||||
if(!is_callable($editor) && !isset($this->editors[$editor])) {
|
||||
throw new InvalidArgumentException(
|
||||
"Unknown editor identifier: $editor. Known editors:" .
|
||||
array_join(",", array_keys($this->editors))
|
||||
implode(",", array_keys($this->editors))
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user