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