From 7fce45b9d194f390deb321d74f7e4b8ed66e33df Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 16 Feb 2015 10:04:39 -0500 Subject: [PATCH] Removed useless, redundant PHPDoc lines. --- .../VuFind/src/VuFind/Recommend/AbstractSummonRecommend.php | 6 ------ .../VuFind/Recommend/AbstractSummonRecommendDeferred.php | 6 ------ module/VuFind/src/VuFind/Recommend/AuthorFacets.php | 6 ------ module/VuFind/src/VuFind/Recommend/AuthorInfo.php | 6 ------ module/VuFind/src/VuFind/Recommend/AuthorityRecommend.php | 6 ------ module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php | 2 -- module/VuFind/src/VuFind/Recommend/DPLATerms.php | 4 ---- module/VuFind/src/VuFind/Recommend/EuropeanaResults.php | 6 ------ .../src/VuFind/Recommend/EuropeanaResultsDeferred.php | 6 ------ module/VuFind/src/VuFind/Recommend/ExpandFacets.php | 6 ------ module/VuFind/src/VuFind/Recommend/FavoriteFacets.php | 2 -- module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php | 6 ------ .../src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php | 6 ------ module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php | 6 ------ module/VuFind/src/VuFind/Recommend/RandomRecommend.php | 6 ------ module/VuFind/src/VuFind/Recommend/RecommendInterface.php | 2 -- module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php | 6 ------ module/VuFind/src/VuFind/Recommend/SearchObject.php | 6 ------ module/VuFind/src/VuFind/Recommend/SideFacets.php | 5 ----- module/VuFind/src/VuFind/Recommend/SpellingSuggestions.php | 6 ------ .../VuFind/src/VuFind/Recommend/SummonResultsDeferred.php | 2 -- module/VuFind/src/VuFind/Recommend/SummonTopics.php | 2 -- module/VuFind/src/VuFind/Recommend/SwitchQuery.php | 6 ------ module/VuFind/src/VuFind/Recommend/SwitchType.php | 6 ------ module/VuFind/src/VuFind/Recommend/TopFacets.php | 4 ---- module/VuFind/src/VuFind/Recommend/VisualFacets.php | 4 ---- module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php | 6 ------ module/VuFind/src/VuFind/Recommend/WorldCatTerms.php | 6 ------ module/VuFind/src/VuFind/Related/Editions.php | 2 -- module/VuFind/src/VuFind/Related/RelatedInterface.php | 2 -- module/VuFind/src/VuFind/Related/Similar.php | 2 -- module/VuFind/src/VuFind/Related/WorldCatEditions.php | 2 -- module/VuFind/src/VuFind/Related/WorldCatSimilar.php | 2 -- 33 files changed, 151 deletions(-) diff --git a/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommend.php b/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommend.php index 57dc6f9ce7e..1263d15688d 100644 --- a/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommend.php +++ b/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommend.php @@ -77,8 +77,6 @@ abstract class AbstractSummonRecommend implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -93,8 +91,6 @@ abstract class AbstractSummonRecommend implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -113,8 +109,6 @@ abstract class AbstractSummonRecommend implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommendDeferred.php b/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommendDeferred.php index 70806014517..9d75b0e035a 100644 --- a/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommendDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/AbstractSummonRecommendDeferred.php @@ -75,8 +75,6 @@ class AbstractSummonRecommendDeferred implements RecommendInterface protected $paramCount = 1; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -89,8 +87,6 @@ class AbstractSummonRecommendDeferred implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -137,8 +133,6 @@ class AbstractSummonRecommendDeferred implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/AuthorFacets.php b/module/VuFind/src/VuFind/Recommend/AuthorFacets.php index 0163e54da64..aa995d06e45 100644 --- a/module/VuFind/src/VuFind/Recommend/AuthorFacets.php +++ b/module/VuFind/src/VuFind/Recommend/AuthorFacets.php @@ -77,8 +77,6 @@ class AuthorFacets implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -92,8 +90,6 @@ class AuthorFacets implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -111,8 +107,6 @@ class AuthorFacets implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/AuthorInfo.php b/module/VuFind/src/VuFind/Recommend/AuthorInfo.php index 6aea6f1989b..b181ec33556 100644 --- a/module/VuFind/src/VuFind/Recommend/AuthorInfo.php +++ b/module/VuFind/src/VuFind/Recommend/AuthorInfo.php @@ -111,8 +111,6 @@ class AuthorInfo implements RecommendInterface, TranslatorAwareInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -145,8 +143,6 @@ class AuthorInfo implements RecommendInterface, TranslatorAwareInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -164,8 +160,6 @@ class AuthorInfo implements RecommendInterface, TranslatorAwareInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/AuthorityRecommend.php b/module/VuFind/src/VuFind/Recommend/AuthorityRecommend.php index c2db4e96790..a02a2be5af1 100644 --- a/module/VuFind/src/VuFind/Recommend/AuthorityRecommend.php +++ b/module/VuFind/src/VuFind/Recommend/AuthorityRecommend.php @@ -104,8 +104,6 @@ class AuthorityRecommend implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -127,8 +125,6 @@ class AuthorityRecommend implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -147,8 +143,6 @@ class AuthorityRecommend implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php b/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php index eac193a1c94..38f9e997e9d 100644 --- a/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php +++ b/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php @@ -48,8 +48,6 @@ class CollectionSideFacets extends SideFacets protected $keywordFilter = false; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. diff --git a/module/VuFind/src/VuFind/Recommend/DPLATerms.php b/module/VuFind/src/VuFind/Recommend/DPLATerms.php index 3cd2002a2fd..22f64136a89 100644 --- a/module/VuFind/src/VuFind/Recommend/DPLATerms.php +++ b/module/VuFind/src/VuFind/Recommend/DPLATerms.php @@ -110,8 +110,6 @@ class DPLATerms implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -140,8 +138,6 @@ class DPLATerms implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php b/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php index 776b093bdcc..c7ede955978 100644 --- a/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php +++ b/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php @@ -128,8 +128,6 @@ class EuropeanaResults implements RecommendInterface, } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -185,8 +183,6 @@ class EuropeanaResults implements RecommendInterface, } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -214,8 +210,6 @@ class EuropeanaResults implements RecommendInterface, } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php b/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php index 671e7790a16..e97974df9d4 100644 --- a/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php @@ -64,8 +64,6 @@ class EuropeanaResultsDeferred implements RecommendInterface protected $processedParams; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -78,8 +76,6 @@ class EuropeanaResultsDeferred implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -113,8 +109,6 @@ class EuropeanaResultsDeferred implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/ExpandFacets.php b/module/VuFind/src/VuFind/Recommend/ExpandFacets.php index a3e2add4a2c..67814486e9b 100644 --- a/module/VuFind/src/VuFind/Recommend/ExpandFacets.php +++ b/module/VuFind/src/VuFind/Recommend/ExpandFacets.php @@ -88,8 +88,6 @@ class ExpandFacets implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -115,8 +113,6 @@ class ExpandFacets implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -137,8 +133,6 @@ class ExpandFacets implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php b/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php index df14009d6f1..5bab380e81e 100644 --- a/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php +++ b/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php @@ -41,8 +41,6 @@ namespace VuFind\Recommend; class FavoriteFacets extends SideFacets { /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. diff --git a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php index 86397a72698..b6f3617e368 100644 --- a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php +++ b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php @@ -97,8 +97,6 @@ class OpenLibrarySubjects implements RecommendInterface, protected $result = false; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -133,8 +131,6 @@ class OpenLibrarySubjects implements RecommendInterface, } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -160,8 +156,6 @@ class OpenLibrarySubjects implements RecommendInterface, } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php index 09d55a7929a..a0ae22c0f0c 100644 --- a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php @@ -58,8 +58,6 @@ class OpenLibrarySubjectsDeferred extends OpenLibrarySubjects protected $processedParams; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -72,8 +70,6 @@ class OpenLibrarySubjectsDeferred extends OpenLibrarySubjects } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -123,8 +119,6 @@ class OpenLibrarySubjectsDeferred extends OpenLibrarySubjects } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php b/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php index beb2a9f5de1..b03d59f290e 100644 --- a/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php +++ b/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php @@ -69,8 +69,6 @@ class PubDateVisAjax implements RecommendInterface protected $dateFacets = array(); /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -94,8 +92,6 @@ class PubDateVisAjax implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -113,8 +109,6 @@ class PubDateVisAjax implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/RandomRecommend.php b/module/VuFind/src/VuFind/Recommend/RandomRecommend.php index 2243bc5ac4e..abb88615fcf 100644 --- a/module/VuFind/src/VuFind/Recommend/RandomRecommend.php +++ b/module/VuFind/src/VuFind/Recommend/RandomRecommend.php @@ -129,8 +129,6 @@ class RandomRecommend implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -160,8 +158,6 @@ class RandomRecommend implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -191,8 +187,6 @@ class RandomRecommend implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/RecommendInterface.php b/module/VuFind/src/VuFind/Recommend/RecommendInterface.php index 3bdf5e690de..caba1105a52 100644 --- a/module/VuFind/src/VuFind/Recommend/RecommendInterface.php +++ b/module/VuFind/src/VuFind/Recommend/RecommendInterface.php @@ -60,8 +60,6 @@ interface RecommendInterface public function setConfig($settings); /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may diff --git a/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php b/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php index 9f031e14ba3..fe258b05550 100644 --- a/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php +++ b/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php @@ -51,8 +51,6 @@ class ResultGoogleMapAjax implements RecommendInterface protected $searchObject; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -65,8 +63,6 @@ class ResultGoogleMapAjax implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -84,8 +80,6 @@ class ResultGoogleMapAjax implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/SearchObject.php b/module/VuFind/src/VuFind/Recommend/SearchObject.php index f8ca9d415e8..319b79fd548 100644 --- a/module/VuFind/src/VuFind/Recommend/SearchObject.php +++ b/module/VuFind/src/VuFind/Recommend/SearchObject.php @@ -79,8 +79,6 @@ abstract class SearchObject implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -97,8 +95,6 @@ abstract class SearchObject implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -141,8 +137,6 @@ abstract class SearchObject implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/SideFacets.php b/module/VuFind/src/VuFind/Recommend/SideFacets.php index b4e43c270ee..797233d6b07 100644 --- a/module/VuFind/src/VuFind/Recommend/SideFacets.php +++ b/module/VuFind/src/VuFind/Recommend/SideFacets.php @@ -128,8 +128,6 @@ class SideFacets extends AbstractFacets } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -202,8 +200,6 @@ class SideFacets extends AbstractFacets } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -430,5 +426,4 @@ class SideFacets extends AbstractFacets { return $this->hierarchicalFacetSortOptions; } - } diff --git a/module/VuFind/src/VuFind/Recommend/SpellingSuggestions.php b/module/VuFind/src/VuFind/Recommend/SpellingSuggestions.php index b123d0d33e4..d079f30a296 100644 --- a/module/VuFind/src/VuFind/Recommend/SpellingSuggestions.php +++ b/module/VuFind/src/VuFind/Recommend/SpellingSuggestions.php @@ -48,8 +48,6 @@ class SpellingSuggestions implements RecommendInterface protected $results; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -62,8 +60,6 @@ class SpellingSuggestions implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -80,8 +76,6 @@ class SpellingSuggestions implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/SummonResultsDeferred.php b/module/VuFind/src/VuFind/Recommend/SummonResultsDeferred.php index dd24a9f0ae0..04feb648ed4 100644 --- a/module/VuFind/src/VuFind/Recommend/SummonResultsDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/SummonResultsDeferred.php @@ -59,8 +59,6 @@ class SummonResultsDeferred extends AbstractSummonRecommendDeferred } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may diff --git a/module/VuFind/src/VuFind/Recommend/SummonTopics.php b/module/VuFind/src/VuFind/Recommend/SummonTopics.php index 918a4a69a67..912888dc842 100644 --- a/module/VuFind/src/VuFind/Recommend/SummonTopics.php +++ b/module/VuFind/src/VuFind/Recommend/SummonTopics.php @@ -41,8 +41,6 @@ namespace VuFind\Recommend; class SummonTopics extends AbstractSummonRecommend { /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may diff --git a/module/VuFind/src/VuFind/Recommend/SwitchQuery.php b/module/VuFind/src/VuFind/Recommend/SwitchQuery.php index 7d77cabf754..cea5f163aa5 100644 --- a/module/VuFind/src/VuFind/Recommend/SwitchQuery.php +++ b/module/VuFind/src/VuFind/Recommend/SwitchQuery.php @@ -100,8 +100,6 @@ class SwitchQuery implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -122,8 +120,6 @@ class SwitchQuery implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -140,8 +136,6 @@ class SwitchQuery implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/SwitchType.php b/module/VuFind/src/VuFind/Recommend/SwitchType.php index 4ac69cc2aad..b0c1e05667a 100644 --- a/module/VuFind/src/VuFind/Recommend/SwitchType.php +++ b/module/VuFind/src/VuFind/Recommend/SwitchType.php @@ -71,8 +71,6 @@ class SwitchType implements RecommendInterface protected $results; /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -87,8 +85,6 @@ class SwitchType implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -105,8 +101,6 @@ class SwitchType implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/TopFacets.php b/module/VuFind/src/VuFind/Recommend/TopFacets.php index 0190f6881f8..7170ee41589 100644 --- a/module/VuFind/src/VuFind/Recommend/TopFacets.php +++ b/module/VuFind/src/VuFind/Recommend/TopFacets.php @@ -57,8 +57,6 @@ class TopFacets extends AbstractFacets protected $baseSettings; /** - * setConfig - * * Store the configuration of the recommendation module. * * TopFacets:[ini section]:[ini name] @@ -91,8 +89,6 @@ class TopFacets extends AbstractFacets } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may diff --git a/module/VuFind/src/VuFind/Recommend/VisualFacets.php b/module/VuFind/src/VuFind/Recommend/VisualFacets.php index 6bd0f81e7fc..00e19054076 100644 --- a/module/VuFind/src/VuFind/Recommend/VisualFacets.php +++ b/module/VuFind/src/VuFind/Recommend/VisualFacets.php @@ -52,8 +52,6 @@ class VisualFacets extends AbstractFacets protected $facets; /** - * setConfig - * * Store the configuration of the recommendation module. * * VisualFacets:[ini section]:[ini name] @@ -77,8 +75,6 @@ class VisualFacets extends AbstractFacets } /** - * init - * * @param \VuFind\Search\Base\Params $params Search parameter object * @param \Zend\StdLib\Parameters $request Parameter object representing user * request. diff --git a/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php b/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php index bdf3a6cceb5..a9acb26be95 100644 --- a/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php +++ b/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php @@ -74,8 +74,6 @@ class WorldCatIdentities implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -89,8 +87,6 @@ class WorldCatIdentities implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -108,8 +104,6 @@ class WorldCatIdentities implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php b/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php index f7c7bd07450..1273aa4d247 100644 --- a/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php +++ b/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php @@ -74,8 +74,6 @@ class WorldCatTerms implements RecommendInterface } /** - * setConfig - * * Store the configuration of the recommendation module. * * @param string $settings Settings from searches.ini. @@ -90,8 +88,6 @@ class WorldCatTerms implements RecommendInterface } /** - * init - * * Called at the end of the Search Params objects' initFromRequest() method. * This method is responsible for setting search parameters needed by the * recommendation module and for reading any existing search parameters that may @@ -109,8 +105,6 @@ class WorldCatTerms implements RecommendInterface } /** - * process - * * Called after the Search Results object has performed its main search. This * may be used to extract necessary information from the Search Results object * or to perform completely unrelated processing. diff --git a/module/VuFind/src/VuFind/Related/Editions.php b/module/VuFind/src/VuFind/Related/Editions.php index 1e1a6f7d552..703ecd0dd92 100644 --- a/module/VuFind/src/VuFind/Related/Editions.php +++ b/module/VuFind/src/VuFind/Related/Editions.php @@ -83,8 +83,6 @@ class Editions implements RelatedInterface } /** - * init - * * Establishes base settings for making recommendations. * * @param string $settings Settings from config.ini diff --git a/module/VuFind/src/VuFind/Related/RelatedInterface.php b/module/VuFind/src/VuFind/Related/RelatedInterface.php index 0b222471210..8fc82607d63 100644 --- a/module/VuFind/src/VuFind/Related/RelatedInterface.php +++ b/module/VuFind/src/VuFind/Related/RelatedInterface.php @@ -49,8 +49,6 @@ namespace VuFind\Related; interface RelatedInterface { /** - * init - * * Establishes base settings for making recommendations. * * @param string $settings Settings from config.ini diff --git a/module/VuFind/src/VuFind/Related/Similar.php b/module/VuFind/src/VuFind/Related/Similar.php index 555fd338268..90aaa4f2771 100644 --- a/module/VuFind/src/VuFind/Related/Similar.php +++ b/module/VuFind/src/VuFind/Related/Similar.php @@ -63,8 +63,6 @@ class Similar implements RelatedInterface } /** - * init - * * Establishes base settings for making recommendations. * * @param string $settings Settings from config.ini diff --git a/module/VuFind/src/VuFind/Related/WorldCatEditions.php b/module/VuFind/src/VuFind/Related/WorldCatEditions.php index 32d148299a3..8549babb41a 100644 --- a/module/VuFind/src/VuFind/Related/WorldCatEditions.php +++ b/module/VuFind/src/VuFind/Related/WorldCatEditions.php @@ -39,8 +39,6 @@ namespace VuFind\Related; class WorldCatEditions extends Editions { /** - * init - * * Establishes base settings for making recommendations. * * @param string $settings Settings from config.ini diff --git a/module/VuFind/src/VuFind/Related/WorldCatSimilar.php b/module/VuFind/src/VuFind/Related/WorldCatSimilar.php index 8579cd074d5..3d637896d76 100644 --- a/module/VuFind/src/VuFind/Related/WorldCatSimilar.php +++ b/module/VuFind/src/VuFind/Related/WorldCatSimilar.php @@ -39,8 +39,6 @@ namespace VuFind\Related; class WorldCatSimilar extends Similar { /** - * init - * * Establishes base settings for making recommendations. * * @param string $settings Settings from config.ini -- GitLab