/**
* Adds a command to the loader.
*
* @param string $commandName The name of the command to load.
* @param string $className The fully qualified class name of the command.
*
* @return void
*
* @since 4.0.0
*/
public function add(string $commandName, string $className)
{
$this->commandMap[$commandName] = $className;
}