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

More PHPDoc cleanup (eliminate redundant lines).

parent c34cde98
No related merge requests found
...@@ -43,8 +43,6 @@ namespace VuFind\Autocomplete; ...@@ -43,8 +43,6 @@ namespace VuFind\Autocomplete;
interface AutocompleteInterface interface AutocompleteInterface
{ {
/** /**
* getSuggestions
*
* This method returns an array of strings matching the user's query for * This method returns an array of strings matching the user's query for
* display in the autocomplete box. * display in the autocomplete box.
* *
...@@ -55,8 +53,6 @@ interface AutocompleteInterface ...@@ -55,8 +53,6 @@ interface AutocompleteInterface
public function getSuggestions($query); public function getSuggestions($query);
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
......
...@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete; ...@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete;
class None implements AutocompleteInterface class None implements AutocompleteInterface
{ {
/** /**
* getSuggestions
*
* This method returns an array of strings matching the user's query for * This method returns an array of strings matching the user's query for
* display in the autocomplete box. * display in the autocomplete box.
* *
...@@ -58,8 +56,6 @@ class None implements AutocompleteInterface ...@@ -58,8 +56,6 @@ class None implements AutocompleteInterface
} }
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
......
...@@ -49,8 +49,6 @@ class OCLCIdentities implements AutocompleteInterface ...@@ -49,8 +49,6 @@ class OCLCIdentities implements AutocompleteInterface
protected $url = 'http://worldcat.org/identities/AutoSuggest'; protected $url = 'http://worldcat.org/identities/AutoSuggest';
/** /**
* getSuggestions
*
* This method returns an array of strings matching the user's query for * This method returns an array of strings matching the user's query for
* display in the autocomplete box. * display in the autocomplete box.
* *
...@@ -83,8 +81,6 @@ class OCLCIdentities implements AutocompleteInterface ...@@ -83,8 +81,6 @@ class OCLCIdentities implements AutocompleteInterface
} }
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
......
...@@ -108,8 +108,6 @@ class Solr implements AutocompleteInterface ...@@ -108,8 +108,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
...@@ -141,8 +139,6 @@ class Solr implements AutocompleteInterface ...@@ -141,8 +139,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* initSearchObject
*
* Initialize the search object used for finding recommendations. * Initialize the search object used for finding recommendations.
* *
* @return void * @return void
...@@ -156,8 +152,6 @@ class Solr implements AutocompleteInterface ...@@ -156,8 +152,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* mungeQuery
*
* Process the user query to make it suitable for a Solr query. * Process the user query to make it suitable for a Solr query.
* *
* @param string $query Incoming user query * @param string $query Incoming user query
...@@ -176,8 +170,6 @@ class Solr implements AutocompleteInterface ...@@ -176,8 +170,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* getSuggestions
*
* This method returns an array of strings matching the user's query for * This method returns an array of strings matching the user's query for
* display in the autocomplete box. * display in the autocomplete box.
* *
...@@ -291,8 +283,6 @@ class Solr implements AutocompleteInterface ...@@ -291,8 +283,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* setDisplayField
*
* Set the display field list. Useful for child classes. * Set the display field list. Useful for child classes.
* *
* @param array $new Display field list. * @param array $new Display field list.
...@@ -305,8 +295,6 @@ class Solr implements AutocompleteInterface ...@@ -305,8 +295,6 @@ class Solr implements AutocompleteInterface
} }
/** /**
* setSortField
*
* Set the sort field list. Useful for child classes. * Set the sort field list. Useful for child classes.
* *
* @param string $new Sort field list. * @param string $new Sort field list.
......
...@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete; ...@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete;
class SolrCN extends Solr class SolrCN extends Solr
{ {
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
...@@ -58,8 +56,6 @@ class SolrCN extends Solr ...@@ -58,8 +56,6 @@ class SolrCN extends Solr
} }
/** /**
* mungeQuery
*
* Process the user query to make it suitable for a Solr query. * Process the user query to make it suitable for a Solr query.
* *
* @param string $query Incoming user query * @param string $query Incoming user query
......
...@@ -43,8 +43,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa ...@@ -43,8 +43,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa
use \VuFind\Db\Table\DbTableAwareTrait; use \VuFind\Db\Table\DbTableAwareTrait;
/** /**
* getSuggestions
*
* This method returns an array of strings matching the user's query for * This method returns an array of strings matching the user's query for
* display in the autocomplete box. * display in the autocomplete box.
* *
...@@ -66,8 +64,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa ...@@ -66,8 +64,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa
} }
/** /**
* setConfig
*
* Set parameters that affect the behavior of the autocomplete handler. * Set parameters that affect the behavior of the autocomplete handler.
* These values normally come from the search configuration file. * These values normally come from the search configuration file.
* *
......
...@@ -123,8 +123,6 @@ class Editions implements RelatedInterface ...@@ -123,8 +123,6 @@ class Editions implements RelatedInterface
} }
/** /**
* getResults
*
* Get an array of Record Driver objects representing other editions of the one * Get an array of Record Driver objects representing other editions of the one
* passed to the constructor. * passed to the constructor.
* *
......
...@@ -77,8 +77,6 @@ class Similar implements RelatedInterface ...@@ -77,8 +77,6 @@ class Similar implements RelatedInterface
} }
/** /**
* getResults
*
* Get an array of Record Driver objects representing items similar to the one * Get an array of Record Driver objects representing items similar to the one
* passed to the constructor. * passed to the constructor.
* *
......
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