Acacha\Llum\Console\GithubInitCommand::repoName PHP Method

repoName() protected method

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