1 | <?php |
||
31 | class DotEnvConfiguration extends JiraDotEnvConfiguration |
||
32 | { |
||
33 | |||
34 | protected $pushService; |
||
35 | |||
36 | /** |
||
37 | * DotEnvConfiguration constructor. |
||
38 | * |
||
39 | * @param string $path Path to the configuration file |
||
40 | * |
||
41 | * @throws \JiraRestApi\JiraException |
||
42 | */ |
||
43 | public function __construct($path = '.') |
||
48 | |||
49 | /** |
||
50 | * Gets the value of an environment variable. Supports boolean, empty and null. |
||
51 | * |
||
52 | * @param string $key |
||
53 | * @param mixed $default |
||
54 | * |
||
55 | * @return mixed |
||
56 | */ |
||
57 | protected function env($key, $default = null) |
||
89 | |||
90 | /** |
||
91 | * @return mixed |
||
92 | */ |
||
93 | public function getPushService() |
||
97 | |||
98 | /** |
||
99 | * Setter for the jira password configuration |
||
100 | * |
||
101 | * @param string $value Password value to set |
||
102 | * |
||
103 | * @return void |
||
104 | */ |
||
105 | public function setJiraPassword($value) |
||
109 | } |
||
110 |