WriteGeneratedFilePart   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 20
dl 0
loc 58
rs 10
c 0
b 0
f 0
wmc 6

6 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A fromArray() 0 6 1
A getOffset() 0 3 1
A typeSerialize() 0 7 1
A getGenerationId() 0 3 1
A getData() 0 3 1
1
<?php
2
3
/**
4
 * This phpFile is auto-generated.
5
 */
6
7
declare(strict_types=1);
8
9
namespace PHPTdGram\Schema;
10
11
/**
12
 * Writes a part of a generated file. This method is intended to be used only if the client has no direct access to TDLib's file system, because it is usually slower than a direct write to the destination file.
13
 */
14
class WriteGeneratedFilePart extends TdFunction
15
{
16
    public const TYPE_NAME = 'writeGeneratedFilePart';
17
18
    /**
19
     * The identifier of the generation process.
20
     */
21
    protected string $generationId;
22
23
    /**
24
     * The offset from which to write the data to the file.
25
     */
26
    protected int $offset;
27
28
    /**
29
     * The data to write.
30
     */
31
    protected string $data;
32
33
    public function __construct(string $generationId, int $offset, string $data)
34
    {
35
        $this->generationId = $generationId;
36
        $this->offset       = $offset;
37
        $this->data         = $data;
38
    }
39
40
    public static function fromArray(array $array): WriteGeneratedFilePart
41
    {
42
        return new static(
43
            $array['generation_id'],
44
            $array['offset'],
45
            $array['data'],
46
        );
47
    }
48
49
    public function typeSerialize(): array
50
    {
51
        return [
52
            '@type'         => static::TYPE_NAME,
53
            'generation_id' => $this->generationId,
54
            'offset'        => $this->offset,
55
            'data'          => $this->data,
56
        ];
57
    }
58
59
    public function getGenerationId(): string
60
    {
61
        return $this->generationId;
62
    }
63
64
    public function getOffset(): int
65
    {
66
        return $this->offset;
67
    }
68
69
    public function getData(): string
70
    {
71
        return $this->data;
72
    }
73
}
74