We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df73d2 commit 6faf3c0Copy full SHA for 6faf3c0
src/Panel/EnvironmentPanel.php
@@ -90,8 +90,13 @@ protected function _prepare(): array
90
$var = get_defined_constants(true);
91
$return['app'] = array_diff_key($var['user'], $return['cake'], $hiddenCakeConstants);
92
93
+ $includePaths = $this->_debug->includePaths();
94
+ foreach ($includePaths as $k => $v) {
95
+ $includePaths[$k] = Debugger::exportVarAsNodes($v);
96
+ }
97
+
98
// Included files data
- $return['includePaths'] = $this->_debug->includePaths();
99
+ $return['includePaths'] = $includePaths;
100
$return['includedFiles'] = $this->prepareIncludedFiles();
101
102
return $return;
0 commit comments