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 33f47e3 commit 3d928c9Copy full SHA for 3d928c9
src/App.php
@@ -50,6 +50,7 @@
50
use LogicException;
51
use ReflectionClass;
52
use ReflectionException;
53
+use SensitiveParameter;
54
55
/**
56
* Class App.
@@ -109,8 +110,11 @@ class App
109
110
* @param array<string,mixed>|Config|string|null $config The config
111
* @param bool $debug Set true to enable debug mode. False to disable.
112
*/
- public function __construct(Config | array | string $config = null, bool $debug = false)
113
- {
+ public function __construct(
114
+ #[SensitiveParameter]
115
+ Config | array | string $config = null,
116
+ bool $debug = false
117
+ ) {
118
if ($debug) {
119
$this->debugStart();
120
}
0 commit comments