| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class maybeInaccessibleMessage extends message { |
||
| 7 | /** Chat the message belonged to */ |
||
| 8 | public chat $chat; |
||
| 9 | |||
| 10 | /** Unique message identifier inside the chat */ |
||
| 11 | public int $message_id; |
||
| 12 | /** |
||
| 13 | * Date the message was sent in Unix time. It is always a positive number, representing a valid date. |
||
| 14 | * Always 0 in inaccessible messages. |
||
| 15 | */ |
||
| 16 | public int $date; |
||
| 17 | |||
| 18 | |||
| 19 | public function __construct(stdClass|null $object = null) { |
||
| 24 | } |