PageBlockCaption::typeSerialize()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
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 PHPTdGram\Schema;
10
11
/**
12
 * Contains a caption of an instant view web page block, consisting of a text and a trailing credit.
13
 */
14
class PageBlockCaption extends TdObject
15
{
16
    public const TYPE_NAME = 'pageBlockCaption';
17
18
    /**
19
     * Content of the caption.
20
     */
21
    protected RichText $text;
22
23
    /**
24
     * Block credit (like HTML tag <cite>).
25
     */
26
    protected RichText $credit;
27
28
    public function __construct(RichText $text, RichText $credit)
29
    {
30
        $this->text   = $text;
31
        $this->credit = $credit;
32
    }
33
34
    public static function fromArray(array $array): PageBlockCaption
35
    {
36
        return new static(
37
            TdSchemaRegistry::fromArray($array['text']),
38
            TdSchemaRegistry::fromArray($array['credit']),
39
        );
40
    }
41
42
    public function typeSerialize(): array
43
    {
44
        return [
45
            '@type'  => static::TYPE_NAME,
46
            'text'   => $this->text->typeSerialize(),
47
            'credit' => $this->credit->typeSerialize(),
48
        ];
49
    }
50
51
    public function getText(): RichText
52
    {
53
        return $this->text;
54
    }
55
56
    public function getCredit(): RichText
57
    {
58
        return $this->credit;
59
    }
60
}
61