for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Repository;
/**
* VideoRepository.
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class UserRepository extends \Doctrine\ORM\EntityRepository
{
public function findLatest($nth)
return $this->getEntityManager()
->createQuery(
'SELECT v FROM AppBundle:USER v ORDER BY v.id DESC'
)
->setMaxResults($nth)->getResult();
}