Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
75.00% covered (warning)
75.00%
3 / 4
75.00% covered (warning)
75.00%
3 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
SerializableSecretDto
75.00% covered (warning)
75.00%
3 / 4
75.00% covered (warning)
75.00%
3 / 4
4.25
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
 __toPhpCode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __toString
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getEnvIndex
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
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) 2023 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22declare(strict_types=1);
23
24namespace oat\tao\model\configurationMarkers\Secrets;
25
26use oat\oatbox\PhpSerializable;
27
28/**
29 * Replace configuration variable with environment variable
30 */
31class SerializableSecretDto implements PhpSerializable
32{
33    private string $envIndex;
34
35    public function __construct(string $envIndex)
36    {
37        $this->envIndex = $envIndex;
38    }
39
40    /**
41     * @return string
42     */
43    public function __toPhpCode(): string
44    {
45        return '$_ENV[\'' . $this->envIndex . '\']';
46    }
47
48    /**
49     * @return string
50     */
51    public function __toString(): string
52    {
53        return $_ENV[$this->envIndex] ?? '';
54    }
55
56    /**
57     * @return string
58     */
59    public function getEnvIndex(): string
60    {
61        return $this->envIndex;
62    }
63}