Completed
Push — master ( 341d3a...1db8b1 )
by Andrii
13:48
created

EnvReader::loadDotenv()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 8
ccs 0
cts 0
cp 0
rs 10
cc 3
nc 3
nop 2
crap 12
1
<?php
2
/**
3
 * Composer plugin for config assembling
4
 *
5
 * @link      https://github.com/hiqdev/composer-config-plugin
6
 * @package   composer-config-plugin
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2018, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\composer\config\readers;
12
13
use Dotenv\Dotenv;
0 ignored issues
show
Bug introduced by
The type Dotenv\Dotenv was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
use hiqdev\composer\config\exceptions\UnsupportedFileTypeException;
15
16
/**
17
 * EnvReader - reads `.env` files.
18
 *
19
 * @author Andrii Vasyliev <[email protected]>
20
 */
21
class EnvReader extends AbstractReader
22
{
23
    public function readRaw($path)
24
    {
25
        if (!class_exists(Dotenv::class)) {
26
            throw new UnsupportedFileTypeException('for .env support require `vlucas/phpdotenv` in your composer.json');
27
        }
28
        $info = pathinfo($path);
29
        $this->loadDotenv($info['dirname'], $info['basename']);
30
31
        return $_ENV;
32
    }
33
34
    /**
35
     * Creates and loads Dotenv object.
36
     * Supports all 2, 3 and 4 version of `phpdotenv`
37
     * @param mixed $dir
38
     * @param mixed $file
39
     * @return Dotenv\Dotenv
0 ignored issues
show
Bug introduced by
The type Dotenv\Dotenv\Dotenv was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
40
     */
41
    private function loadDotenv($dir, $file)
42
    {
43
        if (method_exists(Dotenv::class, 'createMutable')) {
44
            Dotenv::createMutable($dir, $file)->load();
45
        } elseif (method_exists(Dotenv::class, 'create')) {
46
            Dotenv::create($dir, $file)->overload();
47
        } else {
48
            (new Dotenv($dir, $file))->overload();
49
        }
50
    }
51
}
52