PollTypeQuiz   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 34
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A fromArray() 0 4 1
A getCorrectOptionId() 0 3 1
A typeSerialize() 0 5 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 poll in quiz mode, which has exactly one correct answer option and can be answered only once.
13
 */
14
class PollTypeQuiz extends PollType
15
{
16
    public const TYPE_NAME = 'pollTypeQuiz';
17
18
    /**
19
     * 0-based identifier of the correct answer option; -1 for a yet unanswered poll.
20
     */
21
    protected int $correctOptionId;
22
23
    public function __construct(int $correctOptionId)
24
    {
25
        parent::__construct();
26
27
        $this->correctOptionId = $correctOptionId;
28
    }
29
30
    public static function fromArray(array $array): PollTypeQuiz
31
    {
32
        return new static(
33
            $array['correct_option_id'],
34
        );
35
    }
36
37
    public function typeSerialize(): array
38
    {
39
        return [
40
            '@type'             => static::TYPE_NAME,
41
            'correct_option_id' => $this->correctOptionId,
42
        ];
43
    }
44
45
    public function getCorrectOptionId(): int
46
    {
47
        return $this->correctOptionId;
48
    }
49
}
50