Issues (14)

src/DI/Config.php (3 issues)

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
The doc comment class-string[] at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string[].
Loading history...
16
   */
17
  public array $chats = [];
18
19
  /**
20
   * @var class-string<ChatMessageProcessor>[]
0 ignored issues
show
Documentation Bug introduced by
The doc comment class-string<ChatMessageProcessor>[] at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string<ChatMessageProcessor>[].
Loading history...
21
   */
22
  public array $messageProcessors = [];
23
24
  /**
25
   * @var class-string<DatabaseAdapter>
0 ignored issues
show
Documentation Bug introduced by
The doc comment class-string<DatabaseAdapter> at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string<DatabaseAdapter>.
Loading history...
26
   */
27
  public string $databaseAdapter;
28
29
  public string $characterProfileLink = "";
30
}
31
?>