Skip to content

Commit 64b255b

Browse files
committed
Fix phpDoc
Change-Id: I0517283690419fa0835a652d180e1646cb4ab4af
1 parent c34b179 commit 64b255b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Classes/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function search(Tx_Solr_Query $query, $offset = 0, $limit = 10) {
158158
/**
159159
* Allows to modify a query before eventually handing it over to Solr.
160160
*
161-
* @param Tx_Solr_Query The current query before it's being handed over to Solr.
161+
* @param Tx_Solr_Query $query The current query before it's being handed over to Solr.
162162
* @return Tx_Solr_Query The modified query that is actually going to be given to Solr.
163163
*/
164164
protected function modifyQuery(Tx_Solr_Query $query) {

Interfaces/QueryModifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface Tx_Solr_QueryModifier {
3838
/**
3939
* Modifies the given query and returns the modified query as result
4040
*
41-
* @param Tx_Solr_Query The query to modify
41+
* @param Tx_Solr_Query $query The query to modify
4242
* @return Tx_Solr_Query The modified query
4343
*/
4444
public function modifyQuery(Tx_Solr_Query $query);

0 commit comments

Comments
 (0)