Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 7 |
CRAP | |
0.00% |
0 / 1 |
ResultItemVariablesTransmissionEvent | |
0.00% |
0 / 11 |
|
0.00% |
0 / 7 |
56 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
getVariables | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTransmissionId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getItemUri | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTestUri | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getDeliveryExecutionId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
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) 2021 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoQtiTest\models\event; |
24 | |
25 | use oat\oatbox\event\Event; |
26 | |
27 | class ResultItemVariablesTransmissionEvent implements Event |
28 | { |
29 | /** @var array */ |
30 | private $variables; |
31 | /** @var string */ |
32 | private $transmissionId; |
33 | /** @var string */ |
34 | private $itemUri; |
35 | /** @var string */ |
36 | private $testUri; |
37 | /** @var string */ |
38 | private $deliveryExecutionId; |
39 | |
40 | public function __construct( |
41 | string $deliveryExecutionId, |
42 | array $variables, |
43 | string $transmissionId, |
44 | string $itemUri = '', |
45 | string $testUri = '' |
46 | ) { |
47 | $this->variables = $variables; |
48 | $this->transmissionId = $transmissionId; |
49 | $this->itemUri = $itemUri; |
50 | $this->testUri = $testUri; |
51 | $this->deliveryExecutionId = $deliveryExecutionId; |
52 | } |
53 | |
54 | public function getVariables(): array |
55 | { |
56 | return $this->variables; |
57 | } |
58 | |
59 | public function getTransmissionId(): string |
60 | { |
61 | return $this->transmissionId; |
62 | } |
63 | |
64 | public function getItemUri(): string |
65 | { |
66 | return $this->itemUri; |
67 | } |
68 | |
69 | public function getTestUri(): string |
70 | { |
71 | return $this->testUri; |
72 | } |
73 | |
74 | public function getDeliveryExecutionId(): string |
75 | { |
76 | return $this->deliveryExecutionId; |
77 | } |
78 | |
79 | public function getName(): string |
80 | { |
81 | return self::class; |
82 | } |
83 | } |