Fix CS from scrutiniser-ci
This commit is contained in:
parent
c4210a5c6d
commit
1d5fe44ca4
17 changed files with 75 additions and 22 deletions
|
|
@ -19,21 +19,43 @@ class Repository
|
|||
$this->finder = $finder;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $query
|
||||
* @param integer $limit
|
||||
* @param array $options
|
||||
* @return array
|
||||
*/
|
||||
public function find($query, $limit = null, $options = array())
|
||||
{
|
||||
return $this->finder->find($query, $limit, $options);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $query
|
||||
* @param integer $limit
|
||||
* @param array $options
|
||||
* @return mixed
|
||||
*/
|
||||
public function findHybrid($query, $limit = null, $options = array())
|
||||
{
|
||||
return $this->finder->findHybrid($query, $limit, $options);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $query
|
||||
* @param array $options
|
||||
* @return \Pagerfanta\Pagerfanta
|
||||
*/
|
||||
public function findPaginated($query, $options = array())
|
||||
{
|
||||
return $this->finder->findPaginated($query, $options);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $query
|
||||
* @param array $options
|
||||
* @return Paginator\PaginatorAdapterInterface
|
||||
*/
|
||||
public function createPaginatorAdapter($query, $options = array())
|
||||
{
|
||||
return $this->finder->createPaginatorAdapter($query, $options);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue