- Issue created by @MakerTim
When using `drush search-api-solr:get-server-config` you are unable to set the solr_version if you want to combine it with --pipe.
The file_name argument is before the solr_version argument.
When you try to go arround it by using an empty string arg, it will error-out at ```ValueError: Path cannot be empty in /var/www/html/app/modules/contrib/search_api_solr/src/Utility/SolrCommandHelper.php on line 86```
`drush search-api-solr:get-server-config default "" 8 --pipe | busybox unzip`
Proposed fix:
Extend the null check to also check for emtpy strings. So commandline usage will be affected the least.