Completed
Push — master ( dff293...9deb3b )
by Bernhard
10:04
created

DotEnvConfiguration   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: wickb
5
 * Date: 28.11.18
6
 * Time: 08:10
7
 */
8
9
namespace Wicked\Timely;
10
11
use JiraRestApi\Configuration\DotEnvConfiguration as JiraDotEnvConfiguration;
12
13
class DotEnvConfiguration extends JiraDotEnvConfiguration
14
{
15
16
    /**
17
     * @param string $path
18
     */
19
    public function __construct($path = '.')
20
    {
21
        parent::__construct(realpath(__DIR__ . '/../'));
22
    }
23
}
24