Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
DependsOnPropertySynchronizerContext
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
2 / 2
6
100.00% covered (success)
100.00%
1 / 1
 getSupportedParameters
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 validateParameter
100.00% covered (success)
100.00%
16 / 16
100.00% covered (success)
100.00%
1 / 1
5
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
21declare(strict_types=1);
22
23namespace oat\tao\model\Lists\Business\Domain;
24
25use InvalidArgumentException;
26use core_kernel_classes_Property;
27use oat\tao\model\Context\AbstractContext;
28
29class DependsOnPropertySynchronizerContext extends AbstractContext
30{
31    public const PARAM_PROPERTIES = 'properties';
32
33    protected function getSupportedParameters(): array
34    {
35        return [
36            self::PARAM_PROPERTIES,
37        ];
38    }
39
40    protected function validateParameter(string $parameter, $parameterValue): void
41    {
42        if ($parameter === self::PARAM_PROPERTIES && !is_array($parameterValue)) {
43            throw new InvalidArgumentException(
44                sprintf(
45                    'Context parameter %s is not valid. It should be an array.',
46                    $parameter
47                )
48            );
49        }
50
51        foreach ($parameterValue as $value) {
52            if (!$value instanceof core_kernel_classes_Property) {
53                throw new InvalidArgumentException(
54                    sprintf(
55                        'Context parameter %s is not valid. Values must be an instance of %s.',
56                        $parameter,
57                        core_kernel_classes_Property::class
58                    )
59                );
60            }
61        }
62    }
63}