The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 769536d1 authored by Demian Katz's avatar Demian Katz
Browse files

Minor comment/style improvements.

parent 275e3fc8
No related merge requests found
......@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site
*/
namespace VuFind\Search\Favorites;
use VuFind\Search\Base\Params as BaseParams;
/**
* Search Favorites Parameters
......@@ -37,8 +36,13 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class Params extends BaseParams
class Params extends \VuFind\Search\Base\Params
{
/**
* Auth manager
*
* @var \VuFind\Auth\Manager
*/
protected $account;
/**
......
......@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site
*/
namespace VuFind\Search\MixedList;
use VuFind\Search\Base\Params as BaseParams;
/**
* Search Mixed List Parameters
......@@ -37,10 +36,12 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class Params extends BaseParams
class Params extends \VuFind\Search\Base\Params
{
/**
* Array of target record ids
*
* @var array
*/
protected $recordsToRequest;
......
......@@ -40,18 +40,29 @@ class Params extends \VuFind\Search\Base\Params
{
/**
* Facet result limit
*
* @var int
*/
protected $facetLimit = 30;
/**
* Offset for facet results
*
* @var int
*/
protected $facetOffset = null;
/**
* Prefix for facet searching
*
* @var string
*/
protected $facetPrefix = null;
/**
* Sorting order for facet search results
*
* @var string
*/
protected $facetSort = null;
......
......@@ -26,7 +26,6 @@
* @link http://www.vufind.org Main Page
*/
namespace VuFind\Search\SolrAuth;
use VuFind\Search\Solr\Params as SolrParams;
/**
* Solr Authority Search Parameters
......@@ -37,6 +36,6 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://www.vufind.org Main Page
*/
class Params extends SolrParams
class Params extends \VuFind\Search\Solr\Params
{
}
\ No newline at end of file
......@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site
*/
namespace VuFind\Search\SolrAuthor;
use VuFind\Search\Solr\Params as SolrParams;
/**
* Author Search Options
......@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class Params extends SolrParams
class Params extends \VuFind\Search\Solr\Params
{
/**
* Support method for _initSearch() -- handle basic settings.
......
......@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site
*/
namespace VuFind\Search\SolrAuthorFacets;
use VuFind\Search\Solr\Params as SolrParams;
/**
* AuthorFacets Search Parameters
......@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class Params extends SolrParams
class Params extends \VuFind\Search\Solr\Params
{
/**
* Set parameters based on a search object
......
......@@ -27,7 +27,6 @@
* @link http://www.vufind.org Main Page
*/
namespace VuFind\Search\SolrReserves;
use VuFind\Search\Solr\Params as SolrParams;
/**
* Solr Reserves Search Parameters
......@@ -39,6 +38,6 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://www.vufind.org Main Page
*/
class Params extends SolrParams
class Params extends \VuFind\Search\Solr\Params
{
}
\ No newline at end of file
......@@ -40,10 +40,15 @@ class Params extends \VuFind\Search\Base\Params
{
/**
* Settings for all the facets
*
* @var array
*/
protected $fullFacetSettings = array();
/**
* Settings for the date facet only
*
* @var array
*/
protected $dateFacetSettings = array();
......
......@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site
*/
namespace VuFind\Search\Tags;
use VuFind\Search\Base\Params as BaseParams;
/**
* Search Tags Parameters
......@@ -37,7 +36,7 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class Params extends BaseParams
class Params extends \VuFind\Search\Base\Params
{
/**
* Load all recommendation settings from the relevant ini file. Returns an
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment