Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
DotEnvReader | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
12 |
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) 2019 Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\tao\model\mvc; |
22 | |
23 | use Symfony\Component\Dotenv\Dotenv; |
24 | |
25 | /** |
26 | * This class loads the project's default .env file into $_ENV. |
27 | */ |
28 | class DotEnvReader |
29 | { |
30 | /** |
31 | * Reads .env file into $_ENV. |
32 | * |
33 | * @param string $envFile (defaults to project .env file) |
34 | */ |
35 | public function __construct($envFile = '') |
36 | { |
37 | if ($envFile === '') { |
38 | $envFile = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR |
39 | . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '.env'; |
40 | } |
41 | if (file_exists($envFile)) { |
42 | $dotEnv = new Dotenv(); |
43 | $dotEnv->overload($envFile); |
44 | } |
45 | } |
46 | } |