Merge pull request #89 from Codappix/bugfix/typos

BUGFIX: Fix typos in method name and php doc
This commit is contained in:
Daniel Siepmann 2017-10-14 15:59:41 +02:00 committed by GitHub
commit 5d960910f7
3 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ class SearchResult implements SearchResultInterface
/** /**
* Return all facets, if any. * Return all facets, if any.
* *
* @return array<FacetIterface> * @return array<FacetInterface>
*/ */
public function getFacets() public function getFacets()
{ {

View file

@ -35,7 +35,7 @@ interface SearchResultInterface extends \Iterator, \Countable, QueryResultInterf
/** /**
* Return all facets, if any. * Return all facets, if any.
* *
* @return array<FacetIterface> * @return array<FacetInterface>
*/ */
public function getFacets(); public function getFacets();

View file

@ -50,7 +50,7 @@ class QueryFactoryTest extends AbstractUnitTestCase
/** /**
* @test * @test
*/ */
public function creatonOfQueryWorksInGeneral() public function creationOfQueryWorksInGeneral()
{ {
$searchRequest = new SearchRequest('SearchWord'); $searchRequest = new SearchRequest('SearchWord');