diff --git a/module/VuFind/src/VuFind/Search/Base/Options.php b/module/VuFind/src/VuFind/Search/Base/Options.php index a02f9c418b1196e69c2943dbc22b6691ac2febd8..468106e7f0da218d510c29d6befe9a0d30652e49 100644 --- a/module/VuFind/src/VuFind/Search/Base/Options.php +++ b/module/VuFind/src/VuFind/Search/Base/Options.php @@ -733,10 +733,10 @@ abstract class Options implements TranslatorAwareInterface } /** - * Return the route name for the search results action. - * false to cover unimplemented drivers + * Return the route name for the facet list action. Returns false to cover + * unimplemented support. * - * @return false + * @return string|bool */ public function getFacetListAction() { diff --git a/module/VuFind/src/VuFind/Search/Solr/Options.php b/module/VuFind/src/VuFind/Search/Solr/Options.php index 5b07bcb93358870899d71faeeba90568177e5c8f..6855645189e91a24835f076624333cd46820ea11 100644 --- a/module/VuFind/src/VuFind/Search/Solr/Options.php +++ b/module/VuFind/src/VuFind/Search/Solr/Options.php @@ -272,9 +272,10 @@ class Options extends \VuFind\Search\Base\Options } /** - * Return the route name for the search results action. + * Return the route name for the facet list action. Returns false to cover + * unimplemented support. * - * @return string + * @return string|bool */ public function getFacetListAction() { diff --git a/module/VuFind/src/VuFind/Search/SolrWeb/Options.php b/module/VuFind/src/VuFind/Search/SolrWeb/Options.php index 7470651e5b25a0128783b45f2ac4a58e80ff3396..33ab274b4405db496a8aa05f3384546de136b7f1 100644 --- a/module/VuFind/src/VuFind/Search/SolrWeb/Options.php +++ b/module/VuFind/src/VuFind/Search/SolrWeb/Options.php @@ -72,9 +72,10 @@ class Options extends \VuFind\Search\Solr\Options } /** - * Return the route name for the search results action. + * Return the route name for the facet list action. Returns false to cover + * unimplemented support. * - * @return string + * @return string|bool */ public function getFacetListAction() { diff --git a/module/VuFind/src/VuFind/Search/Summon/Options.php b/module/VuFind/src/VuFind/Search/Summon/Options.php index a8b0e20d020200152f31fa44c322997451d1e184..9b4382871491123c5ce6e991832beed3d8bb61ba 100644 --- a/module/VuFind/src/VuFind/Search/Summon/Options.php +++ b/module/VuFind/src/VuFind/Search/Summon/Options.php @@ -186,9 +186,10 @@ class Options extends \VuFind\Search\Base\Options } /** - * Return the route name for the search results action. + * Return the route name for the facet list action. Returns false to cover + * unimplemented support. * - * @return string + * @return string|bool */ public function getFacetListAction() {