PageBlockListItem::getLabel()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
 * Describes an item of a list page block.
13
 */
14
class PageBlockListItem extends TdObject
15
{
16
    public const TYPE_NAME = 'pageBlockListItem';
17
18
    /**
19
     * Item label.
20
     *
21
     * @var string
22
     */
23
    protected string $label;
24
25
    /**
26
     * Item blocks.
27
     *
28
     * @var PageBlock[]
29
     */
30
    protected array $pageBlocks;
31
32
    public function __construct(string $label, array $pageBlocks)
33
    {
34
        $this->label      = $label;
35
        $this->pageBlocks = $pageBlocks;
36
    }
37
38
    public static function fromArray(array $array): PageBlockListItem
39
    {
40
        return new static(
41
            $array['label'],
42
            array_map(fn ($x) => TdSchemaRegistry::fromArray($x), $array['pageBlocks']),
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'           => static::TYPE_NAME,
50
            'label'           => $this->label,
51
            array_map(fn ($x) => $x->typeSerialize(), $this->pageBlocks),
52
        ];
53
    }
54
55
    public function getLabel(): string
56
    {
57
        return $this->label;
58
    }
59
60
    public function getPageBlocks(): array
61
    {
62
        return $this->pageBlocks;
63
    }
64
}
65