Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
40.00% |
2 / 5 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
SearchSettings | |
40.00% |
2 / 5 |
|
66.67% |
2 / 3 |
4.94 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getAvailableColumns | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
jsonSerialize | |
0.00% |
0 / 3 |
|
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) 2022 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | * @author Gabriel Felipe Soares <gabriel.felipe.soares@taotesting.com> |
21 | */ |
22 | |
23 | declare(strict_types=1); |
24 | |
25 | namespace oat\tao\model\search; |
26 | |
27 | use JsonSerializable; |
28 | |
29 | class SearchSettings implements JsonSerializable |
30 | { |
31 | /** @var ResultColumn[] */ |
32 | private $availableColumns; |
33 | |
34 | public function __construct(array $availableColumns) |
35 | { |
36 | $this->availableColumns = $availableColumns; |
37 | } |
38 | |
39 | /** |
40 | * @return ResultColumn[] |
41 | */ |
42 | public function getAvailableColumns(): array |
43 | { |
44 | return $this->availableColumns; |
45 | } |
46 | |
47 | public function jsonSerialize(): array |
48 | { |
49 | return [ |
50 | 'availableColumns' => $this->getAvailableColumns() |
51 | ]; |
52 | } |
53 | } |