We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6acb385 commit b459baaCopy full SHA for b459baa
app/config/config.neon
@@ -18,8 +18,15 @@ application:
18
session:
19
expiration: 14 days
20
21
+nette:
22
+ debugger:
23
+ bar:
24
+ - Panel
25
26
services:
27
- App\Model\UserManager
28
- App\Forms\SignFormFactory
29
router: App\RouterFactory::createRouter
30
+
31
+ -
32
+ class: MyService
app/model/MyService.php
@@ -0,0 +1,5 @@
1
+<?php
2
3
+class MyService
4
+{
5
+}
app/model/Panel.php
@@ -0,0 +1,18 @@
+class Panel implements \Tracy\IBarPanel
6
+ public function __construct(MyService $myService)
7
+ {
8
+ }
9
10
+ public function getTab()
11
12
13
14
+ public function getPanel()
15
16
17
0 commit comments