1 | <?php |
||
7 | class Chat |
||
8 | { |
||
9 | public const TYPE_PRIVATE = 'private'; |
||
10 | public const TYPE_GROUP = 'group'; |
||
11 | |||
12 | private $id; |
||
13 | private $title; |
||
14 | private $type; |
||
15 | |||
16 | 31 | public function __construct(string $id, string $title = null, string $type = self::TYPE_PRIVATE) |
|
22 | |||
23 | 3 | public function getId(): string |
|
27 | |||
28 | 1 | public function getTitle(): ?string |
|
32 | |||
33 | 1 | public function getType(): string |
|
37 | } |
||
38 |