| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class SetLogTagVerbosityLevel extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'setLogTagVerbosityLevel'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Logging tag to change verbosity level. |
||
| 20 | */ |
||
| 21 | protected string $tag; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * New verbosity level; 1-1024. |
||
| 25 | */ |
||
| 26 | protected int $newVerbosityLevel; |
||
| 27 | |||
| 28 | public function __construct(string $tag, int $newVerbosityLevel) |
||
| 29 | { |
||
| 30 | $this->tag = $tag; |
||
| 31 | $this->newVerbosityLevel = $newVerbosityLevel; |
||
| 32 | } |
||
| 33 | |||
| 34 | public static function fromArray(array $array): SetLogTagVerbosityLevel |
||
| 35 | { |
||
| 36 | return new static( |
||
| 37 | $array['tag'], |
||
| 38 | $array['new_verbosity_level'], |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 42 | public function typeSerialize(): array |
||
| 43 | { |
||
| 44 | return [ |
||
| 45 | '@type' => static::TYPE_NAME, |
||
| 46 | 'tag' => $this->tag, |
||
| 47 | 'new_verbosity_level' => $this->newVerbosityLevel, |
||
| 48 | ]; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getTag(): string |
||
| 52 | { |
||
| 53 | return $this->tag; |
||
| 54 | } |
||
| 55 | |||
| 56 | public function getNewVerbosityLevel(): int |
||
| 59 | } |
||
| 60 | } |
||
| 61 |