Completed
Push — master ( 3eebf6...0c0dcf )
by Bernhard
01:47 queued 10s
created

DotEnvConfiguration::setJiraPassword()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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
    public function setJiraPassword($value) {
25
        $this->jiraPassword = $value;
26
    }
27
28
29
}
30