1 | <?php |
||
14 | class Config |
||
15 | { |
||
16 | /** @var string */ |
||
17 | private $commitAuto; |
||
18 | |||
19 | /** @var string|null */ |
||
20 | private $commitBinFile; |
||
21 | |||
22 | /** |
||
23 | * @param string $commitAuto |
||
24 | * @param string|null $commitBinFile |
||
25 | */ |
||
26 | 18 | public function __construct($commitAuto, $commitBinFile) |
|
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | 17 | public function getCommitAuto() |
|
39 | |||
40 | /** |
||
41 | * @return string|null |
||
42 | */ |
||
43 | 14 | public function getCommitBinFile() |
|
47 | } |
||
48 |