Skip to content

Instantly share code, notes, and snippets.

@wilensky
wilensky / php7_doctrine_native_pagination.php
Last active March 30, 2017 07:11 — forked from peterjmit/doctrine_native_pagination.php
Helper function for paginating with PHP7 and native Doctrine class
<?php
use Doctrine\ORM\Query;
use Doctrine\ORM\Tools\Pagination\Paginator;
// ------------------- //
public function paginate(Query $query, int $page = 1, int $limit = 10, bool $fetchJoinCollection = true)
{
// If we don't have a limit just return the result