1 | <?php |
||
10 | class GitConfig |
||
11 | { |
||
12 | /** |
||
13 | * @param string $option |
||
14 | * @return string |
||
15 | */ |
||
16 | 1 | public function get($option) |
|
20 | |||
21 | /** |
||
22 | * @param string $command |
||
23 | * @return string |
||
24 | */ |
||
25 | 1 | public function shell($command) |
|
29 | |||
30 | /** |
||
31 | * @return string|null |
||
32 | */ |
||
33 | 2 | public function getOrigin() |
|
43 | } |
||
44 | |||
46 |