Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
88.89% covered (warning)
88.89%
8 / 9
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
DefaultStrategy
88.89% covered (warning)
88.89%
8 / 9
66.67% covered (warning)
66.67%
2 / 3
5.03
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
 addHashEntry
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
2
 toArray
80.00% covered (warning)
80.00%
4 / 5
0.00% covered (danger)
0.00%
0 / 1
2.03
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) 2017 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 *
21 */
22
23namespace oat\taoQtiItem\model\Export\Extractor\Strategy;
24
25use oat\taoQtiItem\model\Export\Extractor\HashEntry;
26use oat\taoQtiItem\model\flyExporter\extractor\OntologyExtractor;
27
28class DefaultStrategy implements Strategy
29{
30    /** @var array  */
31    private $dataArray = [];
32
33
34    /** @var  string */
35    private $column;
36
37    /**
38     * @param string $column
39     */
40    public function __construct($column)
41    {
42        $this->column = $column;
43    }
44
45    /**
46     * @inheritdoc
47     */
48    public function addHashEntry(HashEntry $hashEntry)
49    {
50        $value = $hashEntry->getValue();
51        if (!empty($value)) {
52            $this->dataArray[] = $value;
53        }
54    }
55
56    /**
57     * @inheritdoc
58     */
59    public function toArray()
60    {
61        if (empty($this->dataArray)) {
62            return [];
63        }
64
65        return [
66            $this->column => implode(OntologyExtractor::DEFAULT_PROPERTY_DELIMITER, $this->dataArray)
67        ];
68    }
69}