| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class AcceptCall extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'acceptCall'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Call identifier. |
||
| 20 | * |
||
| 21 | * @var int |
||
| 22 | */ |
||
| 23 | protected int $callId; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Description of the call protocols supported by the client. |
||
| 27 | * |
||
| 28 | * @var CallProtocol |
||
| 29 | */ |
||
| 30 | protected CallProtocol $protocol; |
||
| 31 | |||
| 32 | public function __construct(int $callId, CallProtocol $protocol) |
||
| 33 | { |
||
| 34 | $this->callId = $callId; |
||
| 35 | $this->protocol = $protocol; |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): AcceptCall |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['call_id'], |
||
| 42 | TdSchemaRegistry::fromArray($array['protocol']), |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'call_id' => $this->callId, |
||
| 51 | 'protocol' => $this->protocol->typeSerialize(), |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getCallId(): int |
||
| 56 | { |
||
| 57 | return $this->callId; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getProtocol(): CallProtocol |
||
| 63 | } |
||
| 64 | } |
||
| 65 |