BUGFIX: Fix typos in method name and php doc

This commit is contained in:
Daniel Siepmann 2017-10-14 13:06:22 +02:00
parent 5509d4a56b
commit 67a43e64a5
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
4 changed files with 4 additions and 4 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

@ -100,7 +100,7 @@ class ProcessesAllowedTablesTest extends AbstractDataHandlerTest
->with( ->with(
$this->equalTo('tt_content'), $this->equalTo('tt_content'),
$this->callback(function ($record) { $this->callback(function ($record) {
return isset($record['uid']) && $record['uid'] === '2' return isset($record['uid']) && $record['uid'] === 2
&& isset($record['pid']) && $record['pid'] === 1 && isset($record['pid']) && $record['pid'] === 1
&& isset($record['header']) && $record['header'] === 'a new record' && isset($record['header']) && $record['header'] === 'a new record'
; ;

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');