Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
66.67% |
4 / 6 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
Setting | |
66.67% |
4 / 6 |
|
75.00% |
3 / 4 |
4.59 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
getKey | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getValue | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
setValue | |
0.00% |
0 / 2 |
|
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) 2020 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\tao\model\security\Business\Domain; |
24 | |
25 | final class Setting |
26 | { |
27 | /** @var string */ |
28 | private $key; |
29 | |
30 | /** @var string */ |
31 | private $value; |
32 | |
33 | public function __construct(string $key, string $value) |
34 | { |
35 | $this->key = $key; |
36 | $this->value = $value; |
37 | } |
38 | |
39 | public function getKey(): string |
40 | { |
41 | return $this->key; |
42 | } |
43 | |
44 | public function getValue(): string |
45 | { |
46 | return $this->value; |
47 | } |
48 | |
49 | public function setValue(string $value): self |
50 | { |
51 | $this->value = $value; |
52 | |
53 | return $this; |
54 | } |
55 | } |