From 928df7f71b3ee83d31c6b6a6c9940fec68ce7ccf Mon Sep 17 00:00:00 2001 From: Jasper Smet Date: Tue, 16 Dec 2025 12:19:30 +0100 Subject: [PATCH 1/2] Document editorBasePath in app configuration Add documentation for editorBasePath configuration. --- config/app.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/app.php b/config/app.php index ef76e664b..b8e2ff573 100644 --- a/config/app.php +++ b/config/app.php @@ -188,6 +188,8 @@ * - `editor` Set the editor URL format you want to use. * By default atom, emacs, macvim, phpstorm, sublime, textmate, and vscode are * available. You can add additional editor link formats using + * - `editorBasePath` - The base path to your project for editor integration. + * Used to generate file links in stack traces. * `Debugger::addEditor()` during your application bootstrap. * - `outputMask` A mapping of `key` to `replacement` values that * `Debugger` should replace in dumped data and logs generated by `Debugger`. From f030f34bd2e8b35183ece25f90cdc9c8960c0e37 Mon Sep 17 00:00:00 2001 From: Jasper Smet Date: Tue, 16 Dec 2025 17:38:59 +0100 Subject: [PATCH 2/2] Update config/app.php Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index b8e2ff573..a5e5e768d 100644 --- a/config/app.php +++ b/config/app.php @@ -188,9 +188,9 @@ * - `editor` Set the editor URL format you want to use. * By default atom, emacs, macvim, phpstorm, sublime, textmate, and vscode are * available. You can add additional editor link formats using + * `Debugger::addEditor()` during your application bootstrap. * - `editorBasePath` - The base path to your project for editor integration. * Used to generate file links in stack traces. - * `Debugger::addEditor()` during your application bootstrap. * - `outputMask` A mapping of `key` to `replacement` values that * `Debugger` should replace in dumped data and logs generated by `Debugger`. */