Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
22.22% covered (danger)
22.22%
2 / 9
40.00% covered (danger)
40.00%
2 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
DependsOnProperty
22.22% covered (danger)
22.22%
2 / 9
40.00% covered (danger)
40.00%
2 / 5
16.76
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getProperty
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getUriEncoded
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getLabel
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 jsonSerialize
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
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
21declare(strict_types=1);
22
23namespace oat\tao\model\Lists\Business\Domain;
24
25use core_kernel_classes_Property;
26use tao_helpers_Uri;
27use JsonSerializable;
28
29class DependsOnProperty implements JsonSerializable
30{
31    /** @var core_kernel_classes_Property */
32    private $property;
33
34    public function __construct(core_kernel_classes_Property $property)
35    {
36        $this->property = $property;
37    }
38
39    public function getProperty(): core_kernel_classes_Property
40    {
41        return $this->property;
42    }
43
44    public function getUriEncoded(): string
45    {
46        return tao_helpers_Uri::encode($this->property->getUri());
47    }
48
49    public function getLabel(): string
50    {
51        return $this->property->getLabel();
52    }
53
54    public function jsonSerialize(): array
55    {
56        return [
57            'uri' => $this->property->getUri(),
58            'uriEncoded' => $this->getUriEncoded(),
59            'label' => $this->getLabel(),
60        ];
61    }
62}