diff --git a/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php b/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php
index 4df2eb046fac76a31364a950700b8ec6d5ff3de6..65c222bfda70322c434a452e75ea4a50eee03244 100644
--- a/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php
+++ b/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php
@@ -43,8 +43,6 @@ namespace VuFind\Autocomplete;
 interface AutocompleteInterface
 {
     /**
-     * getSuggestions
-     *
      * This method returns an array of strings matching the user's query for
      * display in the autocomplete box.
      *
@@ -55,8 +53,6 @@ interface AutocompleteInterface
     public function getSuggestions($query);
 
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
diff --git a/module/VuFind/src/VuFind/Autocomplete/None.php b/module/VuFind/src/VuFind/Autocomplete/None.php
index 05985433e942ff895300fabd6dfa8f1b820aed5c..d4f1fc9915999b38e1abf9ed7ac6ccee9d1611de 100644
--- a/module/VuFind/src/VuFind/Autocomplete/None.php
+++ b/module/VuFind/src/VuFind/Autocomplete/None.php
@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete;
 class None implements AutocompleteInterface
 {
     /**
-     * getSuggestions
-     *
      * This method returns an array of strings matching the user's query for
      * display in the autocomplete box.
      *
@@ -58,8 +56,6 @@ class None implements AutocompleteInterface
     }
 
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
diff --git a/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php b/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php
index 5478424a7368b4665e03d9553e123f1951feb85a..ffeea422f58ad63ec5dae127bf820f5ecdc53efa 100644
--- a/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php
+++ b/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php
@@ -49,8 +49,6 @@ class OCLCIdentities implements AutocompleteInterface
     protected $url = 'http://worldcat.org/identities/AutoSuggest';
 
     /**
-     * getSuggestions
-     *
      * This method returns an array of strings matching the user's query for
      * display in the autocomplete box.
      *
@@ -83,8 +81,6 @@ class OCLCIdentities implements AutocompleteInterface
     }
 
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
diff --git a/module/VuFind/src/VuFind/Autocomplete/Solr.php b/module/VuFind/src/VuFind/Autocomplete/Solr.php
index ec5b5c1e9c14f1e2abc08df6de343cdd4b0e9361..a6f19cca5e97d3e058bf95d5c8e4b445b30f6cb3 100644
--- a/module/VuFind/src/VuFind/Autocomplete/Solr.php
+++ b/module/VuFind/src/VuFind/Autocomplete/Solr.php
@@ -108,8 +108,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
@@ -141,8 +139,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * initSearchObject
-     *
      * Initialize the search object used for finding recommendations.
      *
      * @return void
@@ -156,8 +152,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * mungeQuery
-     *
      * Process the user query to make it suitable for a Solr query.
      *
      * @param string $query Incoming user query
@@ -176,8 +170,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * getSuggestions
-     *
      * This method returns an array of strings matching the user's query for
      * display in the autocomplete box.
      *
@@ -291,8 +283,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * setDisplayField
-     *
      * Set the display field list.  Useful for child classes.
      *
      * @param array $new Display field list.
@@ -305,8 +295,6 @@ class Solr implements AutocompleteInterface
     }
 
     /**
-     * setSortField
-     *
      * Set the sort field list.  Useful for child classes.
      *
      * @param string $new Sort field list.
diff --git a/module/VuFind/src/VuFind/Autocomplete/SolrCN.php b/module/VuFind/src/VuFind/Autocomplete/SolrCN.php
index 48f7df2918d9dfdb01c330e9835d93dc5f580e62..8b0f96fe2fd56f7e0d4ef7f51355671b91f9d774 100644
--- a/module/VuFind/src/VuFind/Autocomplete/SolrCN.php
+++ b/module/VuFind/src/VuFind/Autocomplete/SolrCN.php
@@ -42,8 +42,6 @@ namespace VuFind\Autocomplete;
 class SolrCN extends Solr
 {
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
@@ -58,8 +56,6 @@ class SolrCN extends Solr
     }
 
     /**
-     * mungeQuery
-     *
      * Process the user query to make it suitable for a Solr query.
      *
      * @param string $query Incoming user query
diff --git a/module/VuFind/src/VuFind/Autocomplete/Tag.php b/module/VuFind/src/VuFind/Autocomplete/Tag.php
index d2ff8cfe5709e6f4f599c0d740defde568988c05..a22e8e8cfa777f844db184762c566f1747575350 100644
--- a/module/VuFind/src/VuFind/Autocomplete/Tag.php
+++ b/module/VuFind/src/VuFind/Autocomplete/Tag.php
@@ -43,8 +43,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa
     use \VuFind\Db\Table\DbTableAwareTrait;
 
     /**
-     * getSuggestions
-     *
      * This method returns an array of strings matching the user's query for
      * display in the autocomplete box.
      *
@@ -66,8 +64,6 @@ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterfa
     }
 
     /**
-     * setConfig
-     *
      * Set parameters that affect the behavior of the autocomplete handler.
      * These values normally come from the search configuration file.
      *
diff --git a/module/VuFind/src/VuFind/Related/Editions.php b/module/VuFind/src/VuFind/Related/Editions.php
index 703ecd0dd92870636826266c8b8190e19e5cf9ac..7ee8ae8ddf794fa8ce7383a5c473541bcc8e8422 100644
--- a/module/VuFind/src/VuFind/Related/Editions.php
+++ b/module/VuFind/src/VuFind/Related/Editions.php
@@ -123,8 +123,6 @@ class Editions implements RelatedInterface
     }
 
     /**
-     * getResults
-     *
      * Get an array of Record Driver objects representing other editions of the one
      * passed to the constructor.
      *
diff --git a/module/VuFind/src/VuFind/Related/Similar.php b/module/VuFind/src/VuFind/Related/Similar.php
index 90aaa4f2771439e254a7519d547a63ae632e1790..2478352dcc860347df48e6536379b1d08a758364 100644
--- a/module/VuFind/src/VuFind/Related/Similar.php
+++ b/module/VuFind/src/VuFind/Related/Similar.php
@@ -77,8 +77,6 @@ class Similar implements RelatedInterface
     }
 
     /**
-     * getResults
-     *
      * Get an array of Record Driver objects representing items similar to the one
      * passed to the constructor.
      *