Config
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 0
eloc 5
c 2
b 0
f 0
dl 0
loc 18
ccs 0
cts 0
cp 0
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
    /**
16
     * @var class-string[]
17
     */
18
    public array $chats = [];
19
20
    /**
21
     * @var class-string<ChatMessageProcessor>[]
22
     */
23
    public array $messageProcessors = [];
24
25
    /**
26
     * @var class-string<DatabaseAdapter>
27
     */
28
    public string $databaseAdapter;
29
30
    public string $characterProfileLink = "";
31
}
32