InputPersonalDocument   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 15
dl 0
loc 49
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getFiles() 0 3 1
A fromArray() 0 5 1
A getTranslation() 0 3 1
A __construct() 0 4 1
A typeSerialize() 0 6 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
 * A personal document to be saved to Telegram Passport.
13
 */
14
class InputPersonalDocument extends TdObject
15
{
16
    public const TYPE_NAME = 'inputPersonalDocument';
17
18
    /**
19
     * List of files containing the pages of the document.
20
     *
21
     * @var InputFile[]
22
     */
23
    protected array $files;
24
25
    /**
26
     * List of files containing a certified English translation of the document.
27
     *
28
     * @var InputFile[]
29
     */
30
    protected array $translation;
31
32
    public function __construct(array $files, array $translation)
33
    {
34
        $this->files       = $files;
35
        $this->translation = $translation;
36
    }
37
38
    public static function fromArray(array $array): InputPersonalDocument
39
    {
40
        return new static(
41
            array_map(fn ($x) => TdSchemaRegistry::fromArray($x), $array['files']),
42
            array_map(fn ($x) => TdSchemaRegistry::fromArray($x), $array['translation']),
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'           => static::TYPE_NAME,
50
            array_map(fn ($x) => $x->typeSerialize(), $this->files),
51
            array_map(fn ($x) => $x->typeSerialize(), $this->translation),
52
        ];
53
    }
54
55
    public function getFiles(): array
56
    {
57
        return $this->files;
58
    }
59
60
    public function getTranslation(): array
61
    {
62
        return $this->translation;
63
    }
64
}
65