Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 6
CRAP
0.00% covered (danger)
0.00%
0 / 1
GetConfigQuery
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 6
42
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getExtension
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getAction
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getModule
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getShownExtension
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getShownStructure
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023 (original work) Open Assessment Technologies SA.
19 *
20 * @author Andrei Shapiro <andrei.shapiro@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\tao\model\clientConfig;
26
27class GetConfigQuery
28{
29    private string $extension;
30    private string $action;
31    private string $module;
32    private ?string $shownExtension;
33    private ?string $shownStructure;
34
35    public function __construct(
36        string $extension,
37        string $action,
38        string $module,
39        ?string $shownExtension,
40        ?string $shownStructure
41    ) {
42        $this->extension = $extension;
43        $this->action = $action;
44        $this->module = $module;
45        $this->shownExtension = $shownExtension;
46        $this->shownStructure = $shownStructure;
47    }
48
49    public function getExtension(): string
50    {
51        return $this->extension;
52    }
53
54    public function getAction(): string
55    {
56        return $this->action;
57    }
58
59    public function getModule(): string
60    {
61        return $this->module;
62    }
63
64    public function getShownExtension(): ?string
65    {
66        return $this->shownExtension;
67    }
68
69    public function getShownStructure(): ?string
70    {
71        return $this->shownStructure;
72    }
73}