| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class SetCustomLanguagePackString extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'setCustomLanguagePackString'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Identifier of a previously added custom local language pack in the current localization target. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected string $languagePackId; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * New language pack string. |
||
| 27 | * |
||
| 28 | * @var LanguagePackString |
||
| 29 | */ |
||
| 30 | protected LanguagePackString $newString; |
||
| 31 | |||
| 32 | public function __construct(string $languagePackId, LanguagePackString $newString) |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): SetCustomLanguagePackString |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['language_pack_id'], |
||
| 42 | TdSchemaRegistry::fromArray($array['new_string']), |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'language_pack_id' => $this->languagePackId, |
||
| 51 | 'new_string' => $this->newString->typeSerialize(), |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getLanguagePackId(): string |
||
| 56 | { |
||
| 57 | return $this->languagePackId; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getNewString(): LanguagePackString |
||
| 63 | } |
||
| 64 | } |
||
| 65 |