Newscoop\Services\ListUserService::findBy PHP Method

findBy() public method

Find by given criteria
public findBy ( array $criteria, array $orderBy = [], integer $limit = NULL, integer $offset = NULL ) : array
$criteria array
$orderBy array
$limit integer
$offset integer
return array
    public function findBy(array $criteria, array $orderBy = array(), $limit = NULL, $offset = NULL)
    {
        return $this->getRepository()->findBy($criteria, $orderBy, $limit, $offset);
    }