1 | <?php |
||
22 | class Get extends Base |
||
23 | { |
||
24 | /** |
||
25 | * The name of the configuration key to get |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | private $name; |
||
30 | |||
31 | /** |
||
32 | * The name of the configuration key to get. |
||
33 | * |
||
34 | * @param string $name |
||
35 | * |
||
36 | * @return \SebastianFeldmann\Git\Command\Config\Get |
||
37 | */ |
||
38 | 3 | public function name(string $name) : Get |
|
44 | |||
45 | /** |
||
46 | * Return the command to execute. |
||
47 | * |
||
48 | * @return string |
||
49 | * @throws \RuntimeException |
||
50 | */ |
||
51 | 1 | protected function getGitCommand() : string |
|
55 | } |
||
56 |