Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
VariableStorable | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getDeliveryResultIdentifier | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTestIdentifier | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getVariable | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getIdentifier | |
0.00% |
0 / 1 |
|
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) 2017 (original work) Open Assessment Technologies SA; |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\taoResultServer\models\Entity; |
24 | |
25 | abstract class VariableStorable implements \JsonSerializable |
26 | { |
27 | /** @var string */ |
28 | protected $deliveryResultIdentifier; |
29 | |
30 | /** @var string */ |
31 | protected $testIdentifier; |
32 | |
33 | /** @var \taoResultServer_models_classes_Variable */ |
34 | protected $variable; |
35 | |
36 | /** |
37 | * @param string $deliveryResultIdentifier |
38 | * @param string $testIdentifier |
39 | * @param \taoResultServer_models_classes_Variable $variable |
40 | */ |
41 | public function __construct( |
42 | $deliveryResultIdentifier, |
43 | $testIdentifier, |
44 | \taoResultServer_models_classes_Variable $variable |
45 | ) { |
46 | $this->deliveryResultIdentifier = $deliveryResultIdentifier; |
47 | $this->testIdentifier = $testIdentifier; |
48 | $this->variable = $variable; |
49 | } |
50 | |
51 | /** |
52 | * @return string |
53 | */ |
54 | public function getDeliveryResultIdentifier() |
55 | { |
56 | return $this->deliveryResultIdentifier; |
57 | } |
58 | |
59 | /** |
60 | * @return string |
61 | */ |
62 | public function getTestIdentifier() |
63 | { |
64 | return $this->testIdentifier; |
65 | } |
66 | |
67 | /** |
68 | * @return \taoResultServer_models_classes_Variable |
69 | */ |
70 | public function getVariable() |
71 | { |
72 | return $this->variable; |
73 | } |
74 | |
75 | /** |
76 | * @return string |
77 | */ |
78 | public function getIdentifier() |
79 | { |
80 | return $this->variable->getIdentifier(); |
81 | } |
82 | } |