Acacha\Llum\Console\GithubInitCommand::repoName PHP 메소드

repoName() 보호된 메소드

Obtain repo name.
protected repoName ( Symfony\Component\Console\Input\InputInterface $input ) : mixed | string
$input Symfony\Component\Console\Input\InputInterface
리턴 mixed | string
    protected function repoName(InputInterface $input)
    {
        $name = $input->getArgument('name');
        return isset($name) ? $name : basename(getcwd());
    }