When I execute this code in solr API
....fq=title:(bionformatics OR scince)...
It works fine and return data that fit to Filter Query.
But when I try the same query in Solarium bundle
$client = $this->solr->getClient();
$query = $client->createSelect();
$query->setFilterQueries('title:("bionformatics" OR "scince")');
I get this error
Catchable Fatal Error: Argument 1 passed to Solarium\QueryType\Select\Query\Query::addFilterQueries() must be of the type array, string given, called in /var/www/html/conference/vendor/solarium/solarium/library/Solarium/QueryType/Select/Query/Query.php on line 737 and defined
I must notice that Solarium bundle works well with
$query->setQuery('title:"bionformatics" OR title:"scince"');