Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
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 | public function __construct(string $id, string $title = null, string $type = self::TYPE_PRIVATE) |
||
17 | { |
||
18 | $this->id = $id; |
||
19 | $this->title = $title; |
||
20 | $this->type = $type; |
||
21 | } |
||
22 | |||
23 | public function getId(): string |
||
24 | { |
||
25 | return $this->id; |
||
26 | } |
||
27 | |||
28 | public function getTitle(): ?string |
||
29 | { |
||
30 | return $this->title; |
||
31 | } |
||
32 | |||
33 | public function getType(): string |
||
36 | } |
||
37 | } |
||
38 |