Newscoop\Services\AuditService::findBy PHP Метод

findBy() публичный Метод

Find records by set of criteria
public findBy ( array $criteria, array | null $orderBy = null, integer | null $limit = null, integer | null $offset = null ) : array
$criteria array
$orderBy array | null
$limit integer | null
$offset integer | null
Результат array
    public function findBy(array $criteria, $orderBy = null, $limit = null, $offset = null)
    {
        return $this->em->getRepository('Newscoop\\Entity\\AuditEvent')->findBy($criteria, $orderBy, $limit, $offset);
    }