Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
11 / 11 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
DependentPropertiesRepositoryContext | |
100.00% |
11 / 11 |
|
100.00% |
2 / 2 |
4 | |
100.00% |
1 / 1 |
getSupportedParameters | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
validateParameter | |
100.00% |
8 / 8 |
|
100.00% |
1 / 1 |
3 |
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\tao\model\Lists\Business\Domain; |
24 | |
25 | use InvalidArgumentException; |
26 | use core_kernel_classes_Property; |
27 | use oat\tao\model\Context\AbstractContext; |
28 | |
29 | class DependentPropertiesRepositoryContext extends AbstractContext |
30 | { |
31 | public const PARAM_PROPERTY = 'property'; |
32 | |
33 | protected function getSupportedParameters(): array |
34 | { |
35 | return [ |
36 | self::PARAM_PROPERTY, |
37 | ]; |
38 | } |
39 | |
40 | protected function validateParameter(string $parameter, $parameterValue): void |
41 | { |
42 | if ($parameter === self::PARAM_PROPERTY && !$parameterValue instanceof core_kernel_classes_Property) { |
43 | throw new InvalidArgumentException( |
44 | sprintf( |
45 | 'Context parameter %s is not valid. It must be an instance of %s.', |
46 | $parameter, |
47 | core_kernel_classes_Property::class |
48 | ) |
49 | ); |
50 | } |
51 | } |
52 | } |