Sets the default Command name.
$this
public function setDefaultCommand(string $commandName, bool $isSingleCommand = false) : static { $this->defaultCommand = explode('|', ltrim($commandName, '|'))[0]; if ($isSingleCommand) { // Ensure the command exist $this->find($commandName); $this->singleCommand = true; } return $this; }