| 1 | <?php |
||
| 14 | class AuthorNamePrompt implements PromptInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var GitConfig |
||
| 18 | */ |
||
| 19 | private $gitConfig; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param GitConfig $gitConfig |
||
| 23 | */ |
||
| 24 | 1 | public function __construct(GitConfig $gitConfig) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return GitConfig |
||
| 31 | */ |
||
| 32 | 1 | public function getGitConfig() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 1 | public function getDefault() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @param OutputInterface $output |
||
| 47 | * @param DialogHelper $dialog |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | 1 | public function getValues(OutputInterface $output, DialogHelper $dialog) |
|
| 62 | } |
||
| 63 |