Liuggio\Fastest\Application::getCommandName PHP 메소드

getCommandName() 보호된 메소드

Gets the name of the command based on input.
protected getCommandName ( Symfony\Component\Console\Input\InputInterface $input ) : string
$input Symfony\Component\Console\Input\InputInterface The input interface
리턴 string The command name
    protected function getCommandName(InputInterface $input)
    {
        // This should return the name of your command.
        return 'fastest';
    }