File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1919use Framework \CLI \Command ;
2020use Framework \CLI \Console ;
2121use Framework \Config \Config ;
22+ use Framework \Config \Debug \ConfigCollection ;
23+ use Framework \Config \Debug \ConfigCollector ;
2224use Framework \Database \Database ;
2325use Framework \Database \Debug \DatabaseCollection ;
2426use Framework \Database \Debug \DatabaseCollector ;
@@ -141,6 +143,11 @@ public function __construct(
141143 $ collection = new AppCollection ('App ' );
142144 $ collection ->addCollector (static ::$ debugCollector );
143145 static ::debugger ()->addCollection ($ collection );
146+ $ configCollector = new ConfigCollector ();
147+ static ::$ config ->setDebugCollector ($ configCollector );
148+ $ configCollection = new ConfigCollection ('Config ' );
149+ $ configCollection ->addCollector ($ configCollector );
150+ static ::debugger ()->addCollection ($ configCollection );
144151 }
145152 }
146153
You can’t perform that action at this time.
0 commit comments