1 | <?php |
||
2 | declare(strict_types=1); |
||
3 | |||
4 | namespace HeroesofAbenez\Chat\DI; |
||
5 | |||
6 | use HeroesofAbenez\Chat\ChatMessageProcessor; |
||
7 | use HeroesofAbenez\Chat\DatabaseAdapter; |
||
8 | |||
9 | /** |
||
10 | * @author Jakub Konečný |
||
11 | * @internal |
||
12 | */ |
||
13 | final class Config { |
||
14 | /** |
||
15 | * @var class-string[] |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
16 | */ |
||
17 | public array $chats = []; |
||
18 | |||
19 | /** |
||
20 | * @var class-string<ChatMessageProcessor>[] |
||
0 ignored issues
–
show
|
|||
21 | */ |
||
22 | public array $messageProcessors = []; |
||
23 | |||
24 | /** |
||
25 | * @var class-string<DatabaseAdapter> |
||
0 ignored issues
–
show
|
|||
26 | */ |
||
27 | public string $databaseAdapter; |
||
28 | |||
29 | public string $characterProfileLink = ""; |
||
30 | } |
||
31 | ?> |