| 1 | <?php |
||
| 7 | class Video extends Message |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Message type. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $type = self::TYPE_VIDEO; |
||
| 15 | |||
| 16 | protected $properties = ['filename', 'thumb', 'length', 'secret', 'file_length', 'thumb_secret', 'url']; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | 2 | protected function validateSelf() |
|
| 30 | } |
||
| 31 |