Skip to content

Commit

Permalink
Rename query classes
Browse files Browse the repository at this point in the history
  • Loading branch information
melaniekung committed May 31, 2024
1 parent b484d3d commit 7e5d6d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

/**
* arSolrExists.
* arSolrExistsQuery.
*/
class arSolrExists extends arSolrQuery
class arSolrExistsQuery extends arSolrQuery
{
/**
* Construct exists query.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

/**
* arSolrMatchAll.
* arSolrMatchAllQuery.
*/
class arSolrMatchAll extends arSolrQuery
class arSolrMatchAllQuery extends arSolrQuery
{
/**
* Params.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

/**
* arSolrRange.
* arSolrRangeQuery.
*/
class arSolrRange extends arSolrQuery
class arSolrRangeQuery extends arSolrQuery
{
/**
* Constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
*/

/**
* arSolrTerm.
* arSolrTermQuery.
*/
class arSolrTerm extends arSolrQuery
class arSolrTermQuery extends arSolrQuery
{
/**
* Calls setTerm with the given $term array
Expand Down

0 comments on commit 7e5d6d7

Please sign in to comment.