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