aurimasniekis /
php-tdlib-schema
| 1 | <?php |
||
| 2 | |||
| 3 | /** |
||
| 4 | * This phpFile is auto-generated. |
||
| 5 | */ |
||
| 6 | |||
| 7 | declare(strict_types=1); |
||
| 8 | |||
| 9 | namespace AurimasNiekis\TdLibSchema; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Returns information about currently used log stream for internal logging of TDLib. This is an offline method. Can be called before authorization. Can be called synchronously. |
||
| 13 | */ |
||
| 14 | class GetLogStream extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'getLogStream'; |
||
| 17 | |||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | } |
||
| 21 | |||
| 22 | public static function fromArray(array $array): GetLogStream |
||
|
0 ignored issues
–
show
|
|||
| 23 | { |
||
| 24 | return new static(); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function typeSerialize(): array |
||
| 28 | { |
||
| 29 | return ['@type' => static::TYPE_NAME]; |
||
| 30 | } |
||
| 31 | } |
||
| 32 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.