Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
75.00% |
6 / 8 |
|
50.00% |
2 / 4 |
CRAP | |
0.00% |
0 / 1 |
NamespaceHelper | |
75.00% |
6 / 8 |
|
50.00% |
2 / 4 |
5.39 | |
0.00% |
0 / 1 |
__construct | |
80.00% |
4 / 5 |
|
0.00% |
0 / 1 |
2.03 | |||
getNameSpaces | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
addNameSpaces | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
isNamespaceSupported | |
0.00% |
0 / 1 |
|
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 | * |
21 | */ |
22 | |
23 | namespace oat\tao\helpers; |
24 | |
25 | use oat\oatbox\service\ConfigurableService; |
26 | |
27 | class NamespaceHelper extends ConfigurableService |
28 | { |
29 | public const SERVICE_ID = 'tao/NamespaceHelper'; |
30 | private const OPTION_NAME_SPACES = 'namespaces'; |
31 | |
32 | /** @var array */ |
33 | private $namespaces; |
34 | |
35 | public function __construct(array $options = []) |
36 | { |
37 | parent::__construct($options); |
38 | |
39 | $this->namespaces = []; |
40 | |
41 | if (defined(LOCAL_NAMESPACE)) { |
42 | $this->namespaces[] = LOCAL_NAMESPACE; |
43 | } |
44 | |
45 | $this->namespaces = array_merge($this->namespaces, $this->getOption(self::OPTION_NAME_SPACES, [])); |
46 | } |
47 | |
48 | public function getNameSpaces(): array |
49 | { |
50 | return $this->namespaces; |
51 | } |
52 | |
53 | public function addNameSpaces(string ...$namespaces): void |
54 | { |
55 | $this->namespaces = array_merge($this->namespaces, $namespaces); |
56 | } |
57 | |
58 | public function isNamespaceSupported(string $namespace): bool |
59 | { |
60 | return in_array($namespace, $this->getNamespaces()); |
61 | } |
62 | } |