| Total Complexity | 6 |
| Total Lines | 62 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Chat extends AbstractEntity |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'Chat'; |
||
| 8 | |||
| 9 | protected $id; |
||
| 10 | |||
| 11 | protected $type; |
||
| 12 | |||
| 13 | protected $title; |
||
| 14 | |||
| 15 | protected $username; |
||
| 16 | |||
| 17 | protected $first_name; |
||
| 18 | |||
| 19 | protected $last_name; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function getId() |
||
| 25 | { |
||
| 26 | return $this->id; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function getType() |
||
| 33 | { |
||
| 34 | return $this->type; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function getTitle() |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return mixed |
||
| 47 | */ |
||
| 48 | public function getUsername() |
||
| 49 | { |
||
| 50 | return $this->username; |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return mixed |
||
| 55 | */ |
||
| 56 | public function getFirstName() |
||
| 57 | { |
||
| 58 | return $this->first_name; |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return mixed |
||
| 63 | */ |
||
| 64 | public function getLastName() |
||
| 67 | } |
||
| 68 | } |